for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @license MIT
* @copyright 2013 - 2016 Cross Solution <http://cross-solution.de>
*/
/** */
namespace Core\Form;
* Basic implementation of the ViewPartialProviderInterface
* @author Mathias Gelhausen <[email protected]>
trait ViewPartialProviderTrait
{
* The partial name.
* @var string
protected $partial;
public function setViewPartial($partial)
$this->partial = $partial;
return $this;
}
public function getViewPartial()
return $this->partial;