This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ci.yml with Symfony 6.2, 6.3 (#368)
* Update ci.yml
- Loading branch information
Showing
71 changed files
with
803 additions
and
1,064 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ | |
*/ | ||
class FilterEvents | ||
{ | ||
const PREPARE = 'lexik_filter.prepare'; | ||
public const PREPARE = 'lexik_filter.prepare'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
|
||
namespace Lexik\Bundle\FormFilterBundle\Event; | ||
|
||
use Symfony\Contracts\EventDispatcher\Event; | ||
use Lexik\Bundle\FormFilterBundle\Filter\Condition\Condition; | ||
use Lexik\Bundle\FormFilterBundle\Filter\Condition\ConditionInterface; | ||
use Lexik\Bundle\FormFilterBundle\Filter\Query\QueryInterface; | ||
use Symfony\Contracts\EventDispatcher\Event; | ||
|
||
/** | ||
* @author Jeremy Barthe <[email protected]> | ||
|
@@ -42,8 +42,8 @@ class GetFilterConditionEvent extends Event | |
public function __construct(QueryInterface $filterQuery, $field, $values) | ||
{ | ||
$this->filterQuery = $filterQuery; | ||
$this->field = $field; | ||
$this->values = $values; | ||
$this->field = $field; | ||
$this->values = $values; | ||
} | ||
|
||
/** | ||
|
@@ -82,7 +82,7 @@ public function getValues() | |
* @param string $expression | ||
* @param array $parameters | ||
*/ | ||
public function setCondition($expression, array $parameters = array()) | ||
public function setCondition($expression, array $parameters = []) | ||
{ | ||
$this->condition = new Condition($expression, $parameters); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.