Completed
Branch feature/php7 (a2569a)
by Victor
15:57
created
Math/AbstractSingletonMathLibraryAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Math/Library/Factory/StandardMathLibraryFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.