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-present 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\Configuration\Theme\Theme as BaseTheme;
/**
* Dummy implementation of Theme class for fixture purposes.
* @author Beñat Espiña <[email protected]>
class Theme extends BaseTheme
{
* {@inheritdoc}
public function classes()
}
public function templates($templates)
return array_merge($templates, ['dummy-template' => 'DummyTemplate']);
public function context(array $context)
return $context;