LeanMapper\Reflection\PropertyMethods::getGetter PHP Method

getGetter() public method

Gets getter method
public getGetter ( ) : string | null
return string | null
    public function getGetter()
    {
        return $this->getter;
    }

Usage Example

Example #1
0
 /**
  * Gets getter method
  *
  * @return string|null
  */
 public function getGetter()
 {
     return $this->propertyMethods !== null ? $this->propertyMethods->getGetter() : null;
 }