PhpCsFixer\DocBlock\Annotation::getTypes PHP Method

getTypes() public method

Get the types associated with this annotation.
public getTypes ( ) : string[]
return string[]
    public function getTypes()
    {
        return explode('|', $this->getTypesContent());
    }

Usage Example

 /**
  * Fix the types at the given line.
  *
  * We must be super careful not to modify parts of words.
  *
  * This will be nicely handled behind the scenes for us by the annotation class.
  *
  * @param Annotation $annotation
  */
 private function fixTypes(Annotation $annotation)
 {
     $types = $annotation->getTypes();
     $new = $this->normalizeTypes($types);
     if ($types !== $new) {
         $annotation->setTypes($new);
     }
 }
All Usage Examples Of PhpCsFixer\DocBlock\Annotation::getTypes