for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\DBAL\Migrations\Provider;
use Doctrine\DBAL\Schema\Schema;
/**
* A schemea provider implementation that just returns the schema its given.
*
* @since 1.0.0-alpha3
*/
final class StubSchemaProvider implements SchemaProviderInterface
{
* @var Schema
private $toSchema;
public function __construct(Schema $schema)
$this->toSchema = $schema;
}
* {@inheritdoc}
public function createSchema()
return $this->toSchema;