You are here

public function AbstractHydrator::removeNamingStrategy in Zircon Profile 8.0

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

Removes the naming strategy

Return value

self

Overrides NamingStrategyEnabledInterface::removeNamingStrategy

1 call to AbstractHydrator::removeNamingStrategy()
ClassMethods::removeNamingStrategy in vendor/zendframework/zend-hydrator/src/ClassMethods.php
Removes the naming strategy
1 method overrides AbstractHydrator::removeNamingStrategy()
ClassMethods::removeNamingStrategy in vendor/zendframework/zend-hydrator/src/ClassMethods.php
Removes the naming strategy

File

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

Class

AbstractHydrator

Namespace

Zend\Hydrator

Code

public function removeNamingStrategy() {
  $this->namingStrategy = null;
  return $this;
}