Completed
Push — master ( 1a030a...6f5481 )
by Thomas Mauro
17s queued 11s
created
src/PluginFactory/VcrReplayFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function createPlugin(array $config = []): Plugin
19 19
     {
20
-        if (! class_exists(ReplayPlugin::class)) {
20
+        if (!class_exists(ReplayPlugin::class)) {
21 21
             throw new LogicException('To use the vcr replay plugin you need to install the "php-http/vcr-plugin" package.');
22 22
         }
23 23
 
Please login to merge, or discard this patch.
src/PluginFactory/LoggerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function createPlugin(array $config = []): Plugin
29 29
     {
30
-        if (! class_exists(CachePlugin::class)) {
30
+        if (!class_exists(CachePlugin::class)) {
31 31
             throw new \LogicException('To use the logger plugin you need to install the "php-http/logger-plugin" package.');
32 32
         }
33 33
 
Please login to merge, or discard this patch.