@@ -75,7 +75,7 @@ |
||
| 75 | 75 | { |
| 76 | 76 | return new CardId( |
| 77 | 77 | $this->type, |
| 78 | - array_filter($this->data, function ($data) { |
|
| 78 | + array_filter($this->data, function($data) { |
|
| 79 | 79 | return $data !== null; |
| 80 | 80 | }) |
| 81 | 81 | ); |
@@ -405,7 +405,7 @@ |
||
| 405 | 405 | $key, |
| 406 | 406 | $value === null ? 'null' : gettype($value) |
| 407 | 407 | ); |
| 408 | - } elseif (strlen($value) > (int)$matches[1]) { |
|
| 408 | + } elseif (strlen($value) > (int) $matches[1]) { |
|
| 409 | 409 | $details[] = sprintf( |
| 410 | 410 | 'Received %d bytes of %s allowed for string key "%s" - value is too long', |
| 411 | 411 | strlen($value), |