Completed
Pull Request — master (#63)
by
unknown
01:25
created
src/AfriCC/EPP/AbstractFrame.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -111,6 +111,9 @@  discard block
 block discarded – undo
111 111
         return $this->saveXML();
112 112
     }
113 113
 
114
+    /**
115
+     * @param string $path
116
+     */
114 117
     protected function createNodes($path)
115 118
     {
116 119
         $path_parts = explode('/', $path);
@@ -189,6 +192,9 @@  discard block
 block discarded – undo
189 192
         return $node_path;
190 193
     }
191 194
 
195
+    /**
196
+     * @param string|null $path
197
+     */
192 198
     protected function realxpath($path)
193 199
     {
194 200
         if ($path === null) {
@@ -255,6 +261,9 @@  discard block
 block discarded – undo
255 261
         }
256 262
     }
257 263
 
264
+    /**
265
+     * @return string
266
+     */
258 267
     private function className($class)
259 268
     {
260 269
         if (!is_string($class)) {
Please login to merge, or discard this patch.
src/AfriCC/EPP/PeriodTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     protected function appendPeriod($path, $period)
32 32
     {
33
-        $matches=[];
33
+        $matches = [];
34 34
         if (preg_match('/^(\d+)([a-z])$/i', $period, $matches)) {
35 35
             $this->set(sprintf($path, $matches[2]), $matches[1]);
36 36
         } else {
Please login to merge, or discard this patch.