Files
2026-07-01 16:44:17 +03:00

24 lines
458 B
PHP

<?php namespace ZN\Routing;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
/**
* @codeCoverageIgnore
*/
trait PropertyCreatorTrait
{
public function __call($method, $parameters)
{
$this->filters[strtolower($method)] = $parameters[0] ?? true;
return $this;
}
}