LeanMapper\Reflection\PropertyPasses::getSetterPass PHP 메소드

getSetterPass() 공개 메소드

Gets setter pass
public getSetterPass ( ) : string | null
리턴 string | null
    public function getSetterPass()
    {
        return $this->setterPass;
    }

Usage Example

예제 #1
0
 /**
  * Gets setter pass
  *
  * @return string|null
  */
 public function getSetterPass()
 {
     return $this->propertyPasses !== null ? $this->propertyPasses->getSetterPass() : null;
 }