allowAllPropertiesExcept() 공개 메소드

Example: allowAllPropertiesExcept('password', 'userGroup')
public allowAllPropertiesExcept ( ) : PropertyMappingConfiguration
리턴 PropertyMappingConfiguration this
 /**
  * @test
  * @covers \Neos\Flow\Property\PropertyMappingConfiguration::shouldMap
  */
 public function shouldMapReturnsFalseForBlacklistedProperties()
 {
     $this->propertyMappingConfiguration->allowAllPropertiesExcept('someSourceProperty', 'someOtherProperty');
     $this->assertFalse($this->propertyMappingConfiguration->shouldMap('someSourceProperty'));
     $this->assertFalse($this->propertyMappingConfiguration->shouldMap('someOtherProperty'));
     $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someOtherPropertyWhichHasNotBeenConfigured'));
 }