diff --git a/classes/PodsAPI.php b/classes/PodsAPI.php index 38605a7052..ced533fc42 100644 --- a/classes/PodsAPI.php +++ b/classes/PodsAPI.php @@ -10570,7 +10570,8 @@ public function get_table_info( $object_type, $object, $name = null, $pod = null * @param array $post_status List of post statuses. Default is 'publish' or field setting (if available). * @param string $post_type Post type of current object. * @param array $info Array of information about the object. - * @param string $object Type of object. + * @param string $object_type Type of object. + * @param string $object Object name if provided. * @param string|null $name Name of pod to load. * @param array|Pod|null $pod The pod config (if found). * @param array|Field|null $field The field config (if found). diff --git a/classes/PodsData.php b/classes/PodsData.php index 0da2014498..faffb60253 100644 --- a/classes/PodsData.php +++ b/classes/PodsData.php @@ -765,7 +765,7 @@ public function select( $params ) { * Filter results of Pods Query * * @param array $results - * @param array $params + * @param object $params * @param PodsData $instance The current PodsData class instance. * * @since unknown diff --git a/classes/PodsUI.php b/classes/PodsUI.php index 79d2b5953b..604b510bd6 100644 --- a/classes/PodsUI.php +++ b/classes/PodsUI.php @@ -2646,7 +2646,7 @@ public function manage( $reorder = false ) { * @param array $custom_container_classes List of custom classes to use. * @param PodsUI $obj PodsUI instance. */ - $custom_container_classes = apply_filters( 'pods_ui_manage_custom_container_classes', array(), $obj ); + $custom_container_classes = apply_filters( 'pods_ui_manage_custom_container_classes', array(), $this ); if ( is_admin() ) { array_unshift( $custom_container_classes, 'wrap' );