| 1 | <?php |
||
| 4 | class Tokens extends Resource |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @param string $id La ID del token a devolver. |
||
| 8 | * @param array|string|null $opts |
||
| 9 | * |
||
| 10 | * @return Token |
||
| 11 | */ |
||
| 12 | public static function retrieve($id, $opts = null) |
||
| 16 | /** |
||
| 17 | * @param array|null $params |
||
| 18 | * @param array|string|null $opts |
||
| 19 | * |
||
| 20 | * @return Token Token creado |
||
| 21 | * ATENCIÓN: Solo para desarollo. Lo ideal es usar el CULQI.JS. |
||
| 22 | * |
||
| 23 | */ |
||
| 24 | public static function create($params = null, $opts = null) |
||
| 28 | } |
||
| 29 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.