Files
UNIT3D-Community-Edition/app/Http/Controllers
HDVinnie b275e9ba82 refactor: combine nested if statements
### `Combine If Rector`

Merges nested if statements

```diff
 class SomeClass {
     public function run()
     {
-        if ($cond1) {
-            if ($cond2) {
-                return 'foo';
-            }
+        if ($cond1 && $cond2) {
+            return 'foo';
         }
     }
 }
```
2020-02-13 11:26:54 -05:00
..
2020-02-12 19:15:58 -05:00
2020-02-12 19:15:58 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 19:15:58 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 15:05:34 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 14:51:22 -05:00
2020-02-12 15:05:34 -05:00