File "storage.php"
Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/meta-box/inc/interfaces/storage.php
File size: 320 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Storage interface.
*/
interface RWMB_Storage_Interface {
/**
* Get value from storage.
*
* @param int $object_id Object id.
* @param string $name Field name.
* @param array $args Custom arguments..
* @return mixed
*/
public function get( $object_id, $name, $args = [] );
}