Meta.php 239 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace ACP\Editing\Storage\User; use AC\MetaType; use ACP\Editing\Storage; class Meta extends Storage\Meta { public function __construct( $meta_key ) { parent::__construct( $meta_key, new MetaType( MetaType::USER ) ); } }