Test Setup Failed
Pull Request — master (#5)
by Petr
04:25 queued 02:14
created
src/Core/Request.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         //Add Arguments to the Call Node
88 88
 
89
-        $call = $this->sxmlAddChildrenRecursive($call,$arguments);
89
+        $call = $this->sxmlAddChildrenRecursive($call, $arguments);
90 90
 
91 91
         return $call;
92 92
     }
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
         foreach ($arguments as $key => $value) {
106 106
             if (is_array($value)) {
107 107
                 try {
108
-                    $child = new \SimpleXMLElement(sprintf('<%s></%s>',$key, $key));
108
+                    $child = new \SimpleXMLElement(sprintf('<%s></%s>', $key, $key));
109 109
                     $this->sxmlAddChildrenRecursive($child, $value);
110
-                    $this->sxmlAppend($root,$child);
111
-                } catch(\Exception $e) {
110
+                    $this->sxmlAppend($root, $child);
111
+                } catch (\Exception $e) {
112 112
                     throw new YourMembershipException($e->getMessage(), $e->getCode(), $e);
113 113
                 }
114 114
             } else {
Please login to merge, or discard this patch.
src/YourMembershipServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
 
10 10
 	private $packageName = 'yourmembership';
11
-	private $packageConfigPath = __DIR__.'/config/yourmembership.php';
11
+	private $packageConfigPath = __DIR__ . '/config/yourmembership.php';
12 12
 	/**
13 13
 	 * Indicates if loading of the provider is deferred.
14 14
 	 *
Please login to merge, or discard this patch.