skipProperties() 공개 메소드

Example: skipProperties('unused', 'dummy')
public skipProperties ( ) : PropertyMappingConfiguration
리턴 PropertyMappingConfiguration this
 /**
  * @test
  * @covers \Neos\Flow\Property\PropertyMappingConfiguration::shouldSkip
  */
 public function shouldSkipReturnsTrueIfConfigured()
 {
     $this->propertyMappingConfiguration->skipProperties('someSourceProperty', 'someOtherSourceProperty');
     $this->assertTrue($this->propertyMappingConfiguration->shouldSkip('someSourceProperty'));
     $this->assertTrue($this->propertyMappingConfiguration->shouldSkip('someOtherSourceProperty'));
 }