Download easyswoole / ddl / FilterDate.php - Solve class 'FilterDate' not found
This file is part of the package easyswoole/ddl.
Please go to our download page to download this composer package and to solve the problem class 'FilterDate' not found.
Download easyswoole/ddl
Class is not correct?
Search class FilterDate
<?php
/**
* Created by PhpStorm.
* User: xcg
* Date: 2019/10/16
* Time: 16:50
*/
namespace EasySwoole\DDL\Filter\Limit;
use EasySwoole\DDL\Blueprint\AbstractInterface\ColumnInterface;
use EasySwoole\DDL\Contracts\FilterInterface;
class FilterDate implements FilterInterface
{
public static function run(ColumnInterface $column)
{
if ($column->getColumnLimit()) {
throw new \InvalidArgumentException('col ' . $column->getColumnName() . ' type date no require fsp ');
}
}
}