예제 #1
0
파일: Filter.php 프로젝트: neatphp/neat
 public function __construct()
 {
     parent::__construct(['offset2' => function ($value) {
         if (is_string($value)) {
             return $value . ' is filtrated';
         }
         return $value;
     }]);
 }