Symfony\Component\Validator\Validator::getMetadataFactory PHP Method

getMetadataFactory() public method

{@inheritDoc}
public getMetadataFactory ( )
    public function getMetadataFactory()
    {
        return $this->metadataFactory;
    }

Usage Example

コード例 #1
0
ファイル: ValidatorTest.php プロジェクト: nysander/symfony
 public function testGetMetadataFactory()
 {
     $this->assertInstanceOf(
         'Symfony\Component\Validator\MetadataFactoryInterface',
         $this->validator->getMetadataFactory()
     );
 }