Comment.php 187 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace ACP\Helper\Select\Value; use AC; final class Comment implements AC\Helper\Select\Value { public function get_value( $comment ) { return $comment->comment_ID; } }