for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Hello\Library\View\Traits;
use ByTIC\Hello\Utility\PathHelper;
/**
* Trait HasAdminBaseFolderTrait
* @package ByTIC\Hello\Library\View\Traits
*
* @method addPath($path, $namespace = null)
*/
trait HasHelloAdminFolderTrait
{
public function addHelloAdminNamespacePath()
$this->addPath(PathHelper::views('/Admin'));
$this->addPath(PathHelper::views('/Admin'), 'Hello');
$this->addPath(PathHelper::views('/Admin'), 'HelloAdmin');
}