for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Yep package.
* Copyright (c) 2016 Martin Zeman (Zemistr) (http://www.zemistr.eu)
*/
namespace Yep\Dsn;
* Class SQLite2Dsn
*
* @package Yep\Dsn
* @author Martin Zeman (Zemistr) <[email protected]>
* PDO_SQLITE
* sqlite2::memory:
* sqlite2:/opt/databases/mydb.sqlite2
class Sqlite2Dsn extends SqliteDsn {
* @return string
public function toString() : string {
return 'sqlite2:' . $this->getPath();
}