class SerializableArrayObjectAsset in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/instantiator/tests/DoctrineTest/InstantiatorTestAsset/SerializableArrayObjectAsset.php \DoctrineTest\InstantiatorTestAsset\SerializableArrayObjectAsset
Serializable test asset that also extends an internal class
@author Marco Pivetta <ocramius@gmail.com>
Hierarchy
- class \DoctrineTest\InstantiatorTestAsset\SerializableArrayObjectAsset extends \ArrayObject implements \Serializable
Expanded class hierarchy of SerializableArrayObjectAsset
File
- vendor/doctrine/ instantiator/ tests/ DoctrineTest/ InstantiatorTestAsset/ SerializableArrayObjectAsset.php, line 31 
Namespace
DoctrineTest\InstantiatorTestAssetView source
class SerializableArrayObjectAsset extends ArrayObject implements Serializable {
  /**
   * Constructor - should not be called
   *
   * @throws BadMethodCallException
   */
  public function __construct() {
    throw new BadMethodCallException('Not supposed to be called!');
  }
  /**
   * {@inheritDoc}
   */
  public function serialize() {
    return '';
  }
  /**
   * {@inheritDoc}
   *
   * Should not be called
   *
   * @throws BadMethodCallException
   */
  public function unserialize($serialized) {
    throw new BadMethodCallException('Not supposed to be called!');
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| SerializableArrayObjectAsset:: | public | function | ||
| SerializableArrayObjectAsset:: | public | function | Should not be called | |
| SerializableArrayObjectAsset:: | public | function | Constructor - should not be called | 
