1
0
mirror of synced 2025-01-18 22:41:43 +03:00

20 lines
417 B
PHP
Raw Normal View History

<?php
class Doctrine_Resource_Client extends Doctrine_Resource
{
2007-09-21 18:01:08 +00:00
public $config = array();
2007-09-21 18:01:08 +00:00
public function __construct($config)
{
2007-09-21 18:01:08 +00:00
$this->config = $config;
}
2007-09-21 18:01:08 +00:00
public function newQuery()
{
2007-09-21 18:01:08 +00:00
return new Doctrine_Resource_Query($this->config);
}
2007-09-21 18:19:19 +00:00
public function newRecord($model)
{
2007-09-21 18:43:27 +00:00
return new Doctrine_Resource_Record($model, $this->config);
2007-09-21 18:19:19 +00:00
}
}