Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelar committed Jun 15, 2024
1 parent 2efb321 commit 3ae3666
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Component/Table/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Filter extends View
['id' => FilterOperators::IS_ON_OR_BEFORE, 'label' => 'Is On Or Before', 'types' => ['date', 'datetime', 'time'], 'requiredValue' => true],
['id' => FilterOperators::IS_EMPTY, 'label' => 'Is Empty', 'types' => ['text', 'number', 'date', 'datetime', 'time'], 'requiredValue' => false],
['id' => FilterOperators::IS_NOT_EMPTY, 'label' => 'Is Not Empty', 'types' => ['text', 'number', 'date', 'datetime', 'time'], 'requiredValue' => false],
// ['id' => FilterOperators::IS_ANY_OF, 'label' => 'Is Any Of', 'types' => ['text', 'number'], 'requiredValue' => true], To add with multiple value component
// ['id' => FilterOperators::IS_ANY_OF, 'label' => 'Is Any Of', 'types' => ['text', 'number'], 'requiredValue' => true], To add with multiple value component
];

public static function getComponentName(string $type): string
Expand Down
2 changes: 1 addition & 1 deletion src/Component/Table/Filter/FilterOperators.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);
/**
* Supported operator by Table Filter.
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Service/TableModelControllerInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);
/**
* Table ModelCtrl Interface.
*/
Expand All @@ -13,6 +13,8 @@
interface TableModelControllerInterface
{
public function setSearchFields(array $fields): void;

public function getDataSet(Payload $payload): array;

public function setTableResultSet(Set $resultSet, Payload $payload): void;
}

0 comments on commit 3ae3666

Please sign in to comment.