You are here

ProjectWithXsdExtension.php in Zircon Profile 8.0

File

vendor/symfony/dependency-injection/Tests/Fixtures/includes/ProjectWithXsdExtension.php
View source
<?php

class ProjectWithXsdExtension extends ProjectExtension {
  public function getXsdValidationBasePath() {
    return __DIR__ . '/schema';
  }
  public function getNamespace() {
    return 'http://www.example.com/schema/projectwithxsd';
  }
  public function getAlias() {
    return 'projectwithxsd';
  }

}

Classes