1 | <?php |
||
24 | class LocalTeleporter extends AbstractTeleporter |
||
|
|||
25 | { |
||
26 | /** |
||
27 | * @var Filesystem |
||
28 | */ |
||
29 | private $filesystem; |
||
30 | |||
31 | /** |
||
32 | * @var ResourceLocator |
||
33 | */ |
||
34 | private $resourceLocator; |
||
35 | |||
36 | /** |
||
37 | * Constructor |
||
38 | * |
||
39 | * @param Filesystem $filesystem |
||
40 | */ |
||
41 | public function __construct(Filesystem $filesystem) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function teleport(ZippyResource $resource, $context) |
||
71 | |||
72 | /** |
||
73 | * Creates the LocalTeleporter |
||
74 | * |
||
75 | * @return LocalTeleporter |
||
76 | * @deprecated This method will be removed in a future release (0.5.x) |
||
77 | */ |
||
78 | public static function create() |
||
82 | } |
||
83 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.