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

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

Must be PHP simple types, classes or object is not allowed.
public getSupportedSourceTypes ( ) : array
Результат array
    public function getSupportedSourceTypes();

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::getSupportedSourceTypes