Group.php 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php namespace ACA\BP\Helper\Select\Value; use AC; use BP_Groups_Group; final class Group implements AC\Helper\Select\Value { /** * @param BP_Groups_Group $group * * @return int */ public function get_value( $group ) { return $group->id; } }