Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark authored and StyleCIBot committed Oct 27, 2021
1 parent 88e119b commit fe97ddd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Filter/CompareFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct($column, $value, ?string $table = null)
}
} else {
$type = \is_object($column) ? \get_class($column) : \gettype($column);
throw new InvalidArgumentException('Column must be string or instance of "' . ExpressionInterface::class . '". "' . $type .'" given.');
throw new InvalidArgumentException('Column must be string or instance of "' . ExpressionInterface::class . '". "' . $type . '" given.');
}
}

Expand Down
1 change: 0 additions & 1 deletion src/Processor/ILike.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace Yiisoft\Data\Db\Processor;

use Yiisoft\Data\Db\Filter\ILike as ILikeFilter;
use Yiisoft\Data\Db\Processor\CompareProcessor;

class ILike extends CompareProcessor
{
Expand Down

0 comments on commit fe97ddd

Please sign in to comment.