Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Feb 19, 2024
1 parent 1aa8e28 commit 955cebb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Filter/Widget/DropdownFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function optionsData(
*
* @see Select::addAttributes()
*/
final public function addAttributes(array $attributes): static
public function addAttributes(array $attributes): static
{
$new = clone $this;
$new->select = $this->getSelect()->addAttributes($attributes);
Expand All @@ -55,7 +55,7 @@ final public function addAttributes(array $attributes): static
*
* @see Select::attributes()
*/
final public function attributes(array $attributes): self
public function attributes(array $attributes): self
{
$new = clone $this;
$new->select = $this->getSelect()->attributes($attributes);
Expand Down
4 changes: 2 additions & 2 deletions src/Filter/Widget/TextInputFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class TextInputFilter extends FilterWidget
*
* @see Input::addAttributes()
*/
final public function addAttributes(array $attributes): static
public function addAttributes(array $attributes): static
{
$new = clone $this;
$new->input = $this->getInput()->addAttributes($attributes);
Expand All @@ -33,7 +33,7 @@ final public function addAttributes(array $attributes): static
*
* @see Input::attributes()
*/
final public function attributes(array $attributes): self
public function attributes(array $attributes): self
{
$new = clone $this;
$new->input = $this->getInput()->attributes($attributes);
Expand Down

0 comments on commit 955cebb

Please sign in to comment.