Conditions | 2 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2.024 |
Changes | 0 |
1 | <?php |
||
18 | 8 | public static function startSession($name): bool |
|
19 | { |
||
20 | 1 | $self = new static($name); |
|
21 | try { |
||
22 | 1 | $self->start(); |
|
23 | 8 | register_shutdown_function([$self, 'shutdown']); |
|
24 | |||
25 | 8 | return true; |
|
26 | 1 | } catch (\Exception $exception) { |
|
27 | 1 | $self->addException($exception); |
|
28 | 1 | $self->save(); |
|
29 | |||
30 | 1 | return false; |
|
31 | } |
||
34 |