You are here

ProjectWithXsdExtension.php in Service Container 7.2

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/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