@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Balloon |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @param Iterable $config |
59 | 59 | * @return PluginInterface |
60 | 60 | */ |
61 | - public function setOptions(?Iterable $config): PluginInterface |
|
61 | + public function setOptions(? Iterable $config) : PluginInterface |
|
62 | 62 | { |
63 | 63 | if ($config === null) { |
64 | 64 | return $this; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | 'category' => get_class($this), |
101 | 101 | ]); |
102 | 102 | |
103 | - $result = $this->_findShare($share); |
|
103 | + $result = $this->_findShare($share); |
|
104 | 104 | $shares = array_merge_recursive($shares, $result); |
105 | 105 | } |
106 | 106 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | 'category' => get_class($this), |
122 | 122 | ]); |
123 | 123 | |
124 | - $owner = new User($owner, $this->logger, $this->fs, true); |
|
124 | + $owner = new User($owner, $this->logger, $this->fs, true); |
|
125 | 125 | $this->fs->setUser($owner); |
126 | 126 | $root = $this->fs->getRoot(); |
127 | 127 |