Completed
Push — develop ( 9a283c...250195 )
by Paul
02:08
created
src/Exception/ExceptionInterface/ExceptionCatcherInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,5 +23,5 @@
 block discarded – undo
23 23
      *
24 24
      * @throws Exception If the configuration does not allow ignoring errors.
25 25
      */
26
-    public function catch(Exception $exception, string $path): void;
26
+    public function catch (Exception $exception, string $path): void;
27 27
 }
Please login to merge, or discard this patch.
src/Model/PhpFileModel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function getFullNameFor(string $name): string
67 67
     {
68 68
         $namespace = $this->getNamespaceString();
69
-        return $namespace === null? $name : $namespace . '\\' . $name;
69
+        return $namespace === null ? $name : $namespace . '\\' . $name;
70 70
     }
71 71
 
72 72
     /**
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      */
127 127
     public function getUse(string $name): string
128 128
     {
129
-        if (! $this->hasUse($name)) {
129
+        if (!$this->hasUse($name)) {
130 130
             throw new ParseException(sprintf(
131 131
                 'Trying to get a full class name for "%s", but it does not exists',
132 132
                 $name
Please login to merge, or discard this patch.
src/Model/PropertyTrait/NamespaceTrait.php 1 patch
Spacing   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,9 +41,8 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function getNamespaceString(): ?string
43 43
     {
44
-        return Validator::notEmpty()->validate($this->namespace)?
45
-            implode('\\', $this->namespace) :
46
-            null;
44
+        return Validator::notEmpty()->validate($this->namespace) ?
45
+            implode('\\', $this->namespace) : null;
47 46
     }
48 47
 
49 48
     /**
@@ -51,8 +50,7 @@  discard block
 block discarded – undo
51 50
      */
52 51
     public function getNamespaceLast(): ?string
53 52
     {
54
-        return Validator::notEmpty()->validate($this->namespace)?
55
-            $this->namespace[(count($this->namespace) - 1)] :
56
-            null;
53
+        return Validator::notEmpty()->validate($this->namespace) ?
54
+            $this->namespace[(count($this->namespace) - 1)] : null;
57 55
     }
58 56
 }
Please login to merge, or discard this patch.
src/Model/PropertyInterface/VisibilityInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@
 block discarded – undo
21 21
     /**
22 22
      * @var int PUBLIC A public visibility.
23 23
      */
24
-    public const PUBLIC             = 1;
24
+    public const PUBLIC = 1;
25 25
 
26 26
     /**
27 27
      * @var int PUBLIC A protected visibility.
28 28
      */
29
-    public const PROTECTED          = 2;
29
+    public const PROTECTED = 2;
30 30
 
31 31
     /**
32 32
      * @var int PUBLIC A private visibility.
33 33
      */
34
-    public const PRIVATE            = 3;
34
+    public const PRIVATE = 3;
35 35
 
36 36
     /**
37 37
      * @param int|null $visibility The new visibility to set.
Please login to merge, or discard this patch.
src/Executor/Executor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $phpFile->setName($name);
60 60
 
61 61
         if ($phpFile->getTestableFunctionsCount() === 0) {
62
-            if (! $this->config->hasInterfaceParsing() || $phpFile->getInterfacesFunctionsCount() === 0) {
62
+            if (!$this->config->hasInterfaceParsing() || $phpFile->getInterfacesFunctionsCount() === 0) {
63 63
                 return null;
64 64
             }
65 65
         }
Please login to merge, or discard this patch.
src/Executor/FileExecutor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function invoke(string $sourcePath, string $targetPath, string $name = 'GeneratedTest'): bool
77 77
     {
78
-        if (! $this->fileValidator->validate($sourcePath)) {
78
+        if (!$this->fileValidator->validate($sourcePath)) {
79 79
             return false;
80 80
         }
81 81
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     {
115 115
         $targetPathExists = $this->fileSystem->has($targetPath);
116 116
 
117
-        if ($targetPathExists && ! $this->config->hasOverwrite()) {
117
+        if ($targetPathExists && !$this->config->hasOverwrite()) {
118 118
             throw new FileExistsException(sprintf('The target file "%s" already exists.', $targetPath));
119 119
         }
120 120
 
Please login to merge, or discard this patch.
src/Executor/DirectoryExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         $this->output->section(sprintf('Directory "%s" parsing begins.', $sourcePath));
89 89
 
90 90
         // Check if source directory exists
91
-        if (! $this->fileSystem->has($sourcePath) || ! $this->fileSystem->getMimetype($sourcePath) === 'directory') {
91
+        if (!$this->fileSystem->has($sourcePath) || !$this->fileSystem->getMimetype($sourcePath) === 'directory') {
92 92
             throw new FileNotFoundException(sprintf('The source directory "%s" does not exist.', $sourcePath));
93 93
         }
94 94
 
Please login to merge, or discard this patch.
src/Parser/NodeParser/AbstractNodeParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function parse(Node $node, NodeInterface $parent): NodeInterface
35 35
     {
36
-        if (! method_exists($this, 'invoke')) {
36
+        if (!method_exists($this, 'invoke')) {
37 37
             throw new ParseException(sprintf(
38 38
                 'Class "%s" must implements method "invoke" described in AbstractNodeParser',
39 39
                 get_class($this)
Please login to merge, or discard this patch.
src/Container/Container.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function get($id): object
68 68
     {
69
-        if (! Validator::stringType()->validate($id)) {
69
+        if (!Validator::stringType()->validate($id)) {
70 70
             throw new ContainerException('Identifier is not a string.');
71 71
         }
72 72
         return $this->resolveInstance($id);
@@ -132,13 +132,13 @@  discard block
 block discarded – undo
132 132
      */
133 133
     private function autoResolve(string $class): object
134 134
     {
135
-        if (! class_exists($class)) {
135
+        if (!class_exists($class)) {
136 136
             throw new ContainerException(sprintf('Class "%s" does not exists.', $class));
137 137
         }
138 138
 
139 139
         $reflection = new \ReflectionClass($class);
140 140
 
141
-        if (! $reflection->isInstantiable()) {
141
+        if (!$reflection->isInstantiable()) {
142 142
             throw new ContainerException(sprintf('Class "%s" is not instantiable.', $class));
143 143
         }
144 144
         return $this->buildInstance($reflection);
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         if (($constructor = $reflection->getConstructor()) === null) {
159 159
             return $reflection->newInstance();
160 160
         }
161
-        if (! $constructor->isPublic()) {
161
+        if (!$constructor->isPublic()) {
162 162
             throw new ContainerException(
163 163
                 sprintf('Class "%s" has no public constructor.', $reflection->getName())
164 164
             );
Please login to merge, or discard this patch.