Neos\Flow\Property\TypeConverterInterface::getSupportedTargetType PHP Метод

getSupportedTargetType() публичный Метод

Can be a simple type or a class name.
public getSupportedTargetType ( ) : string
Результат string
    public function getSupportedTargetType();

Usage Example

 /**
  * @test
  */
 public function checkMetadata()
 {
     $this->assertEquals(['string', 'array'], $this->converter->getSupportedSourceTypes(), 'Source types do not match');
     $this->assertEquals('object', $this->converter->getSupportedTargetType(), 'Target type does not match');
     $this->assertEquals(1, $this->converter->getPriority(), 'Priority does not match');
 }
All Usage Examples Of Neos\Flow\Property\TypeConverterInterface::getSupportedTargetType