1 | <?php |
||
21 | final class JsynExtractor |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | * |
||
26 | * Content of the JSYN File |
||
27 | */ |
||
28 | private $jsyn; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | * |
||
33 | * SQL Syntax to use for script generation |
||
34 | */ |
||
35 | private $sqlSyntax; |
||
36 | |||
37 | /** |
||
38 | * @param $jsynFile string | PathUtil |
||
39 | * @param $sqlSyntax string |
||
40 | * |
||
41 | * @return null |
||
|
|||
42 | */ |
||
43 | public function __construct($jsynFile, $sqlSyntax) |
||
48 | |||
49 | /** |
||
50 | * @param $jsynFile string | PathUtil |
||
51 | * |
||
52 | * Setter function for the jsonFile global property |
||
53 | * |
||
54 | * @return null |
||
55 | */ |
||
56 | public function setJsynFile($jsynFile) |
||
67 | |||
68 | /** |
||
69 | * @param $sqlSyntax string |
||
70 | * |
||
71 | * Setter function for the sqlSyntax global property |
||
72 | * |
||
73 | * @return null |
||
74 | */ |
||
75 | public function setSqlSyntax($sqlSyntax) |
||
85 | |||
86 | /** |
||
87 | * @return Array |
||
88 | */ |
||
89 | public function getJsyn() |
||
93 | |||
94 | /** |
||
95 | * Performs extraction of the appropriate sql syntax |
||
96 | * fromthe supplied jsyn file. |
||
97 | * |
||
98 | * @return null |
||
99 | */ |
||
100 | public function formatJsyn() |
||
110 | |||
111 | /** |
||
112 | * Returns the extracted jsyn as a string |
||
113 | * |
||
114 | * @return null |
||
115 | */ |
||
116 | public function __toString() |
||
120 | } |
||
121 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.