Skip to content

Commit

Permalink
Docblocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Feb 24, 2024
1 parent 48e5be9 commit 83437b8
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/Model/Filter/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract class Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [];

Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Boolean.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Boolean extends Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'mode' => 'OR',
Expand Down
4 changes: 2 additions & 2 deletions src/Model/Filter/Compare.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Compare extends Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'operator' => '>=',
Expand All @@ -20,7 +20,7 @@ class Compare extends Base
/**
* Allowed operators.
*
* @var array
* @var array<string>
*/
protected array $_operators = [
'>=', '<=', '<', '>',
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Escaper/DefaultEscaper.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DefaultEscaper implements EscaperInterface
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'fromWildCardAny' => '%',
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Escaper/SqlserverEscaper.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class SqlserverEscaper extends DefaultEscaper
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'fromWildCardAny' => '%',
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Exists.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Exists extends Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'mode' => 'OR',
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Finder.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Finder extends Base
{
/**
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'map' => [],
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Like.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Like extends Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'before' => false,
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Filter/Value.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Value extends Base
/**
* Default configuration.
*
* @var array
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'mode' => 'OR',
Expand Down

0 comments on commit 83437b8

Please sign in to comment.