Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Db / RowGateway / Feature / AbstractFeature.php
blob0bb91a666337061a1a838b411d353598f896fc74
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Db\RowGateway\Feature;
12 use Zend\Db\RowGateway\AbstractRowGateway;
13 use Zend\Db\RowGateway\Exception;
15 abstract class AbstractFeature extends AbstractRowGateway
18 /**
19 * @var AbstractRowGateway
21 protected $rowGateway = null;
23 /**
24 * @var array
26 protected $sharedData = array();
28 /**
29 * @return string
31 public function getName()
33 return get_class($this);
36 /**
37 * @param AbstractRowGateway $rowGateway
39 public function setRowGateway(AbstractRowGateway $rowGateway)
41 $this->rowGateway = $rowGateway;
44 /**
45 * @throws \Zend\Db\RowGateway\Exception\RuntimeException
47 public function initialize()
49 throw new Exception\RuntimeException('This method is not intended to be called on this object.');
52 /**
53 * @return array
55 public function getMagicMethodSpecifications()
57 return array();