for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the WPFoundation library.
*
* Copyright (c) 2015 LIN3S <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace fixtures\LIN3S\WPFoundation;
use LIN3S\WPFoundation\PostTypes\Fields\CustomPostTypeFields as BaseCustomPostTypeFields;
/**
* Dummy implementation of custom post type fields class for fixture purposes.
* @author Beñat Espiña <[email protected]>
class CustomPostTypeFields extends BaseCustomPostTypeFields
{
* {@inheritdoc}
protected $name = 'custom_post_type';
public function components()
return [];
}