You are here

interface NamingStrategyEnabledInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-hydrator/src/NamingStrategyEnabledInterface.php \Zend\Hydrator\NamingStrategyEnabledInterface
  2. 8 vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategyEnabledInterface.php \Zend\Stdlib\Hydrator\NamingStrategyEnabledInterface
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-hydrator/src/NamingStrategyEnabledInterface.php \Zend\Hydrator\NamingStrategyEnabledInterface

Hierarchy

Expanded class hierarchy of NamingStrategyEnabledInterface

All classes that implement NamingStrategyEnabledInterface

1 file declares its use of NamingStrategyEnabledInterface
NamingStrategyEnabledInterface.php in vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategyEnabledInterface.php

File

vendor/zendframework/zend-hydrator/src/NamingStrategyEnabledInterface.php, line 12

Namespace

Zend\Hydrator
View source
interface NamingStrategyEnabledInterface {

  /**
   * Adds the given naming strategy
   *
   * @param NamingStrategy\NamingStrategyInterface $strategy The naming to register.
   * @return self
   */
  public function setNamingStrategy(NamingStrategy\NamingStrategyInterface $strategy);

  /**
   * Gets the naming strategy.
   *
   * @return NamingStrategy\NamingStrategyInterface
   */
  public function getNamingStrategy();

  /**
   * Checks if a naming strategy exists.
   *
   * @return bool
   */
  public function hasNamingStrategy();

  /**
   * Removes the naming with the given name.
   *
   * @return self
   */
  public function removeNamingStrategy();

}

Members

Namesort descending Modifiers Type Description Overrides
NamingStrategyEnabledInterface::getNamingStrategy public function Gets the naming strategy. 1
NamingStrategyEnabledInterface::hasNamingStrategy public function Checks if a naming strategy exists. 1
NamingStrategyEnabledInterface::removeNamingStrategy public function Removes the naming with the given name. 1
NamingStrategyEnabledInterface::setNamingStrategy public function Adds the given naming strategy 1