Passed
Push — main ( 0b4aee...5ce5f6 )
by Dimitri
12:17
created
AnnotationReader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public static function instance()
40 40
     {
41
-        if (! (static::$_instance instanceof static)) {
41
+        if (!(static::$_instance instanceof static)) {
42 42
             $params            = func_get_args();
43 43
             static::$_instance = new static(...$params);
44 44
         }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     protected function __construct()
53 53
     {
54 54
         $cacheDir = rtrim(sys_get_temp_dir(), '/\\') . DIRECTORY_SEPARATOR . 'blitz-php' . DIRECTORY_SEPARATOR . 'annotations';
55
-        if (! is_dir($cacheDir)) {
55
+        if (!is_dir($cacheDir)) {
56 56
             mkdir($cacheDir, 0o777, true);
57 57
         }
58 58
         Annotations::$config['cache'] = new AnnotationCache($cacheDir);
Please login to merge, or discard this patch.