| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class StreamTeleporter extends GenericTeleporter |
||
| 22 | { |
||
| 23 | public function __construct() |
||
| 24 | { |
||
| 25 | parent::__construct(new StreamReaderFactory(), new StreamWriter(), new ResourceLocator()); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Creates the StreamTeleporter |
||
| 30 | * |
||
| 31 | * @return StreamTeleporter |
||
| 32 | * @deprecated This method will be removed in a future release (0.5.x) |
||
| 33 | */ |
||
| 34 | public static function create() |
||
| 37 | } |
||
| 38 | } |
||
| 39 |