@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Scope; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper; |
5 | 5 | |
@@ -62,12 +62,12 @@ discard block |
||
62 | 62 | $scopeName = lcfirst(substr($name, 5)); |
63 | 63 | $scope = $this->structure->getScope($this->selection->getName(), $scopeName); |
64 | 64 | if (!$scope) { |
65 | - trigger_error('Scope ' . $scopeName . ' is not defined for table ' . $this->selection->getName(), E_USER_ERROR); |
|
65 | + trigger_error('Scope '.$scopeName.' is not defined for table '.$this->selection->getName(), E_USER_ERROR); |
|
66 | 66 | } |
67 | 67 | return $this->where(call_user_func_array($scope->getCallback(), $arguments)); |
68 | 68 | } |
69 | 69 | |
70 | - trigger_error('Call to undefined method ' . get_class($this) . '::' . $name . '()', E_USER_ERROR); |
|
70 | + trigger_error('Call to undefined method '.get_class($this).'::'.$name.'()', E_USER_ERROR); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /**********************************************************************\ |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @param mixed $key Primary key |
80 | 80 | * @return ActiveRow|null |
81 | 81 | */ |
82 | - public function get($key): ?ActiveRow |
|
82 | + public function get($key): ? ActiveRow |
|
83 | 83 | { |
84 | 84 | $row = $this->selection->get($key); |
85 | 85 | return $row instanceof NetteDatabaseActiveRow ? $this->prepareRecord($row) : null; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * Returns one record |
90 | 90 | * @return ActiveRow|null |
91 | 91 | */ |
92 | - public function fetch(): ?ActiveRow |
|
92 | + public function fetch(): ? ActiveRow |
|
93 | 93 | { |
94 | 94 | $row = $this->selection->fetch(); |
95 | 95 | return $row ? $this->prepareRecord($row) : null; |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | * Returns current selection data record |
385 | 385 | * @return ActiveRow|null |
386 | 386 | */ |
387 | - public function current(): ?ActiveRow |
|
387 | + public function current(): ? ActiveRow |
|
388 | 388 | { |
389 | 389 | $row = $this->selection->current(); |
390 | 390 | return $row instanceof IRow ? $this->prepareRecord($row) : null; |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | * @param string $key Row ID |
435 | 435 | * @return ActiveRow|null |
436 | 436 | */ |
437 | - public function offsetGet($key): ?ActiveRow |
|
437 | + public function offsetGet($key): ? ActiveRow |
|
438 | 438 | { |
439 | 439 | $row = $this->selection->offsetGet($key); |
440 | 440 | return $row instanceof IRow ? $this->prepareRecord($row) : null; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Behaviour; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Structure; |
5 | 5 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | foreach ($scopes as $scope) { |
50 | 50 | if (!($scope instanceof Scope)) { |
51 | - throw new SimpleMapperException('Scopes can be only of class ' . Scope::class); |
|
51 | + throw new SimpleMapperException('Scopes can be only of class '.Scope::class); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | $this->data[$tableName]['scopes'][$scope->getName()] = $scope; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @param string $scope |
93 | 93 | * @return Scope|null |
94 | 94 | */ |
95 | - public function getScope(string $tableName, string $scope): ?Scope |
|
95 | + public function getScope(string $tableName, string $scope): ? Scope |
|
96 | 96 | { |
97 | 97 | return $this->data[$tableName]['scopes'][$scope] ?? null; |
98 | 98 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Structure; |
5 | 5 | |
@@ -58,5 +58,5 @@ discard block |
||
58 | 58 | * @param string $scope |
59 | 59 | * @return Scope|null |
60 | 60 | */ |
61 | - public function getScope(string $tableName, string $scope): ?Scope; |
|
61 | + public function getScope(string $tableName, string $scope): ? Scope; |
|
62 | 62 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Structure; |
5 | 5 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @param string $scope |
79 | 79 | * @return Scope|null |
80 | 80 | */ |
81 | - public function getScope(string $table, string $scope): ?Scope |
|
81 | + public function getScope(string $table, string $scope): ? Scope |
|
82 | 82 | { |
83 | 83 | return null; |
84 | 84 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper; |
5 | 5 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @param string $class |
69 | 69 | * @return null|Repository |
70 | 70 | */ |
71 | - public function getRepository(string $class): ?Repository |
|
71 | + public function getRepository(string $class): ? Repository |
|
72 | 72 | { |
73 | 73 | return $this->repositories[$class] ?? null; |
74 | 74 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Exception; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace SimpleMapper\Exception; |
5 | 5 |