for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Webino (http://webino.sk)
*
* @link https://github.com/webino/WebinoDbDump/ for the canonical source repository
* @copyright Copyright (c) 2014-2017 Webino, s. r. o. (http://webino.sk)
* @license BSD-3-Clause
*/
namespace WebinoDbDump\Db\Dump\Platform;
use WebinoDbDump\Db\Dump\Adapter;
* Base class for a dump utility platform
* @author Peter Bačinský <[email protected]>
abstract class AbstractPlatform
{
* @var Adapter
protected $adapter;
* @param Adapter $adapter
public function __construct(Adapter $adapter)
$this->adapter = $adapter;
}