You are here

public function AbstractHydrator::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-hydrator/src/AbstractHydrator.php \Zend\Hydrator\AbstractHydrator::__construct()

Initializes a new instance of this class.

1 call to AbstractHydrator::__construct()
ClassMethods::__construct in vendor/zendframework/zend-hydrator/src/ClassMethods.php
Define if extract values will use camel case or name with underscore
1 method overrides AbstractHydrator::__construct()
ClassMethods::__construct in vendor/zendframework/zend-hydrator/src/ClassMethods.php
Define if extract values will use camel case or name with underscore

File

vendor/zendframework/zend-hydrator/src/AbstractHydrator.php, line 44

Class

AbstractHydrator

Namespace

Zend\Hydrator

Code

public function __construct() {
  $this->strategies = new ArrayObject();
  $this->filterComposite = new Filter\FilterComposite();
}