Skip to content

Commit d26c2c6

Browse files
committed
Add static and non-static magic methods for add and get methods
1 parent 7de8cfe commit d26c2c6

File tree

1 file changed

+34
-12
lines changed

1 file changed

+34
-12
lines changed

src/TextRuApi.php

+34-12
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function userkey($userkey = null)
4848
* @return array
4949
* @throws WrongParameterException
5050
*/
51-
public static function add($userkey, $text, $options = [])
51+
private static function add_to_textru($userkey, $text, $options = [])
5252
{
5353
if ((empty($userkey)) || (empty($text))) throw new WrongParameterException("Required params is empty", 400123);
5454

@@ -76,11 +76,6 @@ public static function add($userkey, $text, $options = [])
7676

7777
}
7878

79-
public function adds($text, $options = [])
80-
{
81-
return $this::add($this->userkey, $text, $options);
82-
}
83-
8479
/**
8580
* Send API get request to TextRu
8681
* @param $userkey
@@ -89,7 +84,7 @@ public function adds($text, $options = [])
8984
* @return array
9085
* @throws WrongParameterException
9186
*/
92-
public static function get($userkey, $uid, $jsonvisible = null)
87+
private static function get_from_textru($userkey, $uid, $jsonvisible = null)
9388
{
9489
if ((empty($userkey)) || (empty($uid))) throw new WrongParameterException("Required params is empty", 400131);
9590

@@ -117,11 +112,6 @@ public static function get($userkey, $uid, $jsonvisible = null)
117112
return $result;
118113
}
119114

120-
public function gets($uid, $jsonvisible = null)
121-
{
122-
return $this::get($this->userkey, $uid, $jsonvisible);
123-
}
124-
125115
/**
126116
* Curl wrapper, send POST request with predefined settings
127117
* @param $postfields
@@ -145,4 +135,36 @@ public static function sendCurl($postfields, $url = 'http://api.text.ru/post')
145135

146136
return json_decode($answer);
147137
}
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+
}
148170
}

0 commit comments

Comments
 (0)