for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Bright Nucleus View Component.
*
* @package BrightNucleus\View
* @author Alain Schlesser <[email protected]>
* @license MIT
* @link http://www.brightnucleus.com/
* @copyright 2016 Alain Schlesser, Bright Nucleus
*/
namespace BrightNucleus\View\View;
* Class BaseView.
* @since 0.1.0
* @package BrightNucleus\View\View
class BaseView extends AbstractView
{
* Check whether the Findable can handle an individual criterion.
* @param mixed $criterion Criterion to check.
* @return bool Whether the Findable can handle the criterion.
public function canHandle($criterion)
return true;
}