1 | <?php |
||
17 | class Factory |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * @param string $json |
||
22 | * |
||
23 | * @return AbstractMessage |
||
24 | * @throws UnknownRequestException |
||
25 | * @throws MalformedRequestException |
||
26 | */ |
||
27 | public static function factory($json) |
||
47 | |||
48 | |||
49 | /** |
||
50 | * Don't allow instantiation |
||
51 | */ |
||
52 | private function __construct() |
||
56 | |||
57 | } |
||
58 |