Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * __get
- *
- * @param string $property
- * @throws Exception\InvalidArgumentException
- * @return mixed
- */
- public function __get($property)
- {
- switch (strtolower($property)) {
- case 'lastinsertvalue':
- return $this->lastInsertValue;
- case 'adapter':
- return $this->adapter;
- case 'table':
- return $this->table;
- }
- if ($this->featureSet->canCallMagicGet($property)) {
- return $this->featureSet->callMagicGet($property);
- }
- throw new Exception\InvalidArgumentException('Invalid magic property access in ' . __CLASS__ . '::__get()');
- }
- /**
- * @param string $property
- * @param mixed $value
- * @return mixed
- * @throws Exception\InvalidArgumentException
- */
- public function __set($property, $value)
- {
- if ($this->featureSet->canCallMagicSet($property)) {
- return $this->featureSet->callMagicSet($property, $value);
- }
- throw new Exception\InvalidArgumentException('Invalid magic property access in ' . __CLASS__ . '::__set()');
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement