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