@@ -28,7 +28,7 @@ |
||
| 28 | 28 | * @param \PDO $pdo |
| 29 | 29 | * @param array $options |
| 30 | 30 | */ |
| 31 | - public function __construct(\PDO $pdo, array $options = []) |
|
| 31 | + public function __construct(\PDO $pdo, array $options = [ ]) |
|
| 32 | 32 | { |
| 33 | 33 | $this->pdo = $pdo; |
| 34 | 34 | $this->options = $options; |
@@ -16,14 +16,14 @@ |
||
| 16 | 16 | $this->bindInterceptor( |
| 17 | 17 | $this->matcher->annotatedWith(Sessional::class), |
| 18 | 18 | $this->matcher->any(), |
| 19 | - [SessionalInterceptor::class] |
|
| 19 | + [ SessionalInterceptor::class ] |
|
| 20 | 20 | ); |
| 21 | 21 | |
| 22 | 22 | // Method annotated with @Sessional |
| 23 | 23 | $this->bindInterceptor( |
| 24 | 24 | $this->matcher->any(), |
| 25 | 25 | $this->matcher->annotatedWith(Sessional::class), |
| 26 | - [SessionalInterceptor::class] |
|
| 26 | + [ SessionalInterceptor::class ] |
|
| 27 | 27 | ); |
| 28 | 28 | } |
| 29 | 29 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | * @SessionHandler("handler") |
| 32 | 32 | * @SessionOptions("options") |
| 33 | 33 | */ |
| 34 | - public function __construct($handler, array $options = []) |
|
| 34 | + public function __construct($handler, array $options = [ ]) |
|
| 35 | 35 | { |
| 36 | 36 | $this->handler = $handler; |
| 37 | 37 | $this->options = $options; |