@@ -39,7 +39,7 @@ |
||
39 | 39 | private function __construct(MathLibraryFactoryInterface $mathLibraryFactory = null, string $extension = '') |
40 | 40 | { |
41 | 41 | $mathLibraryFactory = $mathLibraryFactory ?? new StandardMathLibraryFactory(); |
42 | - $this->library = $mathLibraryFactory->getLibraryInstance($extension); |
|
42 | + $this->library = $mathLibraryFactory->getLibraryInstance($extension); |
|
43 | 43 | $this->extension = $mathLibraryFactory->getExtension(); |
44 | 44 | $foo = 'baz'; |
45 | 45 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | ); |
82 | 82 | } |
83 | 83 | |
84 | - if(!extension_loaded($extension)) { |
|
84 | + if (!extension_loaded($extension)) { |
|
85 | 85 | throw $this->createNoExtensionException(); |
86 | 86 | } |
87 | 87 |