for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Zippy.
*
* (c) Alchemy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Zippy\Resource\Teleporter;
use Alchemy\Zippy\Resource\Reader\Stream\StreamReaderFactory;
use Alchemy\Zippy\Resource\ResourceLocator;
use Alchemy\Zippy\Resource\Writer\StreamWriter;
/**
* This class transport an object using php stream wrapper
class StreamTeleporter extends GenericTeleporter
{
public function __construct()
parent::__construct(new StreamReaderFactory(), new StreamWriter(), new ResourceLocator());
}
* Creates the StreamTeleporter
* @return StreamTeleporter
* @deprecated This method will be removed in a future release (0.5.x)
public static function create()
return new static();