for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Victoire\Bundle\CriteriaBundle\DataSource;
abstract class BaseDataSourceProxy
{
protected $dataSource;
public function __construct($dataSource)
$this->dataSource = $dataSource;
}
public function __call($name, $args = null)
$this->dataSource->{$name}($args);