| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class GuzzleTeleporter extends GenericTeleporter |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @param ResourceReaderFactory $readerFactory |
||
| 28 | * @param ResourceLocator $resourceLocator |
||
| 29 | */ |
||
| 30 | public function __construct(ResourceReaderFactory $readerFactory = null, ResourceLocator $resourceLocator = null) |
||
| 31 | { |
||
| 32 | parent::__construct($readerFactory ?: new GuzzleReaderFactory(), new FilesystemWriter(), $resourceLocator); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Creates the GuzzleTeleporter |
||
| 37 | * |
||
| 38 | * @deprecated This method will be removed in v0.5.x |
||
| 39 | * @return GuzzleTeleporter |
||
| 40 | */ |
||
| 41 | public static function create() |
||
| 44 | } |
||
| 45 | } |
||
| 46 |