@@ -48,7 +48,7 @@ public function userkey($userkey = null)
48
48
* @return array
49
49
* @throws WrongParameterException
50
50
*/
51
- public static function add ($ userkey , $ text , $ options = [])
51
+ private static function add_to_textru ($ userkey , $ text , $ options = [])
52
52
{
53
53
if ((empty ($ userkey )) || (empty ($ text ))) throw new WrongParameterException ("Required params is empty " , 400123 );
54
54
@@ -76,11 +76,6 @@ public static function add($userkey, $text, $options = [])
76
76
77
77
}
78
78
79
- public function adds ($ text , $ options = [])
80
- {
81
- return $ this ::add ($ this ->userkey , $ text , $ options );
82
- }
83
-
84
79
/**
85
80
* Send API get request to TextRu
86
81
* @param $userkey
@@ -89,7 +84,7 @@ public function adds($text, $options = [])
89
84
* @return array
90
85
* @throws WrongParameterException
91
86
*/
92
- public static function get ($ userkey , $ uid , $ jsonvisible = null )
87
+ private static function get_from_textru ($ userkey , $ uid , $ jsonvisible = null )
93
88
{
94
89
if ((empty ($ userkey )) || (empty ($ uid ))) throw new WrongParameterException ("Required params is empty " , 400131 );
95
90
@@ -117,11 +112,6 @@ public static function get($userkey, $uid, $jsonvisible = null)
117
112
return $ result ;
118
113
}
119
114
120
- public function gets ($ uid , $ jsonvisible = null )
121
- {
122
- return $ this ::get ($ this ->userkey , $ uid , $ jsonvisible );
123
- }
124
-
125
115
/**
126
116
* Curl wrapper, send POST request with predefined settings
127
117
* @param $postfields
@@ -145,4 +135,36 @@ public static function sendCurl($postfields, $url = 'http://api.text.ru/post')
145
135
146
136
return json_decode ($ answer );
147
137
}
138
+
139
+ /**
140
+ * PHP magic method, for non-static methods
141
+ * @param $name
142
+ * @param $arguments
143
+ */
144
+ public function __call ($ name , $ arguments )
145
+ {
146
+ if ($ name === 'add ' ) {
147
+ call_user_func_array ([$ this , 'add_to_textru ' ], array_merge ([$ this ->userkey ], $ arguments ));
148
+ }
149
+
150
+ if ($ name === 'get ' ) {
151
+ call_user_func_array ([$ this , 'get_from_textru ' ], array_merge ([$ this ->userkey ], $ arguments ));
152
+ }
153
+ }
154
+
155
+ /**
156
+ * PHP magic method, for static methods
157
+ * @param $name
158
+ * @param $arguments
159
+ */
160
+ public static function __callStatic ($ name , $ arguments )
161
+ {
162
+ if ($ name === 'add ' ) {
163
+ call_user_func_array (['self ' , 'add_to_textru ' ], $ arguments );
164
+ }
165
+
166
+ if ($ name === 'get ' ) {
167
+ call_user_func_array (['self ' , 'get_from_textru ' ], $ arguments );
168
+ }
169
+ }
148
170
}
0 commit comments