interface NamingStrategyEnabledInterface in Zircon Profile 8
Same name in this branch
- 8 vendor/zendframework/zend-hydrator/src/NamingStrategyEnabledInterface.php \Zend\Hydrator\NamingStrategyEnabledInterface
- 8 vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategyEnabledInterface.php \Zend\Stdlib\Hydrator\NamingStrategyEnabledInterface
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-hydrator/src/NamingStrategyEnabledInterface.php \Zend\Hydrator\NamingStrategyEnabledInterface
Hierarchy
- interface \Zend\Hydrator\NamingStrategyEnabledInterface
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\HydratorView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NamingStrategyEnabledInterface:: |
public | function | Gets the naming strategy. | 1 |
NamingStrategyEnabledInterface:: |
public | function | Checks if a naming strategy exists. | 1 |
NamingStrategyEnabledInterface:: |
public | function | Removes the naming with the given name. | 1 |
NamingStrategyEnabledInterface:: |
public | function | Adds the given naming strategy | 1 |