Completed
Push — master ( cfa990...8d390f )
by Samuel
02:33
created
src/JsynExtractor.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     private $sqlSyntax;
36 36
 
37 37
     /**
38
-     * @param $jsynFile string | PathUtil
38
+     * @param string $jsynFile string | PathUtil
39 39
      * @param $sqlSyntax string
40 40
      *
41 41
      * @return null
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     }
85 85
 
86 86
      /**
87
-     * @return Array
87
+     * @return string
88 88
      */
89 89
     public function getJsyn()
90 90
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Returns the extracted jsyn as a string
113 113
      *
114
-     * @return null
114
+     * @return string
115 115
      */
116 116
     public function __toString()
117 117
     {
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
         return;
66 66
     }
67 67
 
68
-     /**
69
-     * @param $sqlSyntax string
70
-     *
71
-     * Setter function for the sqlSyntax global property
72
-     *
73
-     * @return null
74
-     */
68
+        /**
69
+         * @param $sqlSyntax string
70
+         *
71
+         * Setter function for the sqlSyntax global property
72
+         *
73
+         * @return null
74
+         */
75 75
     public function setSqlSyntax($sqlSyntax)
76 76
     {
77 77
         $this->sqlSyntax = $sqlSyntax;
@@ -83,20 +83,20 @@  discard block
 block discarded – undo
83 83
         return;
84 84
     }
85 85
 
86
-     /**
87
-     * @return Array
88
-     */
86
+        /**
87
+         * @return Array
88
+         */
89 89
     public function getJsyn()
90 90
     {
91 91
         return $this->jsyn;
92 92
     }
93 93
 
94
-     /**
95
-     * Performs extraction of the appropriate sql syntax
96
-     * fromthe supplied jsyn file.
97
-     *
98
-     * @return null
99
-     */
94
+        /**
95
+         * Performs extraction of the appropriate sql syntax
96
+         * fromthe supplied jsyn file.
97
+         *
98
+         * @return null
99
+         */
100 100
     public function formatJsyn()
101 101
     {
102 102
         for ($i = 0; $i < count($this->jsyn); ++$i) {
Please login to merge, or discard this patch.