Skip to content

Commit

Permalink
normalized license messages in PHP files
Browse files Browse the repository at this point in the history
  • Loading branch information
blue-eyes authored and fabpot committed Jan 18, 2011
1 parent 557d926 commit 4f225c9
Show file tree
Hide file tree
Showing 36 changed files with 234 additions and 234 deletions.
4 changes: 2 additions & 2 deletions Annotation/Route.php
@@ -1,7 +1,5 @@
<?php

namespace Symfony\Component\Routing\Annotation;

/*
* This file is part of the Symfony package.
*
Expand All @@ -11,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Annotation;

/**
* Annotation class for @Route().
*
Expand Down
10 changes: 5 additions & 5 deletions CompiledRoute.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Routing;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing;

/**
* CompiledRoutes are returned by the RouteCompiler class.
*
Expand Down
16 changes: 8 additions & 8 deletions Generator/Dumper/GeneratorDumper.php
@@ -1,19 +1,19 @@
<?php

namespace Symfony\Component\Routing\Generator\Dumper;

use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Generator\Dumper;

use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;

/**
* GeneratorDumper is the base class for all built-in generator dumpers.
*
Expand Down
10 changes: 5 additions & 5 deletions Generator/Dumper/GeneratorDumperInterface.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Routing\Generator\Dumper;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Generator\Dumper;

/**
* GeneratorDumperInterface is the interface that all generator dumper classes must implement.
*
Expand Down
14 changes: 7 additions & 7 deletions Generator/Dumper/PhpGeneratorDumper.php
@@ -1,18 +1,18 @@
<?php

namespace Symfony\Component\Routing\Generator\Dumper;

use Symfony\Component\Routing\Route;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Generator\Dumper;

use Symfony\Component\Routing\Route;

/**
* PhpGeneratorDumper creates a PHP class able to generate URLs for a given set of routes.
*
Expand Down
16 changes: 8 additions & 8 deletions Generator/UrlGenerator.php
@@ -1,19 +1,19 @@
<?php

namespace Symfony\Component\Routing\Generator;

use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Generator;

use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

/**
* UrlGenerator generates URL based on a set of routes.
*
Expand Down
10 changes: 5 additions & 5 deletions Generator/UrlGeneratorInterface.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Routing\Generator;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Generator;

/**
* UrlGeneratorInterface is the interface that all URL generator classes must implements.
*
Expand Down
18 changes: 9 additions & 9 deletions Loader/AnnotationClassLoader.php
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Doctrine\Common\Annotations\AnnotationReader;
Expand All @@ -9,15 +18,6 @@
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

/**
* AnnotationClassLoader loads routing information from a PHP class and its methods.
*
Expand Down
14 changes: 7 additions & 7 deletions Loader/AnnotationDirectoryLoader.php
@@ -1,18 +1,18 @@
<?php

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/**
* AnnotationDirectoryLoader loads routing information from annotations set
* on PHP classes and methods.
Expand Down
16 changes: 8 additions & 8 deletions Loader/AnnotationFileLoader.php
@@ -1,19 +1,19 @@
<?php

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Resource\FileResource;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Resource\FileResource;

/**
* AnnotationFileLoader loads routing information from annotations set
* on a PHP class and its methods.
Expand Down
14 changes: 7 additions & 7 deletions Loader/AnnotationGlobLoader.php
@@ -1,18 +1,18 @@
<?php

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/**
* AnnotationGlobLoader loads routing information from annotations set
* on PHP classes and methods.
Expand Down
14 changes: 7 additions & 7 deletions Loader/ClosureLoader.php
@@ -1,21 +1,21 @@
<?php

namespace Symfony\Component\Routing\Loader;

/*
* This file is part of the Symfony framework.
*
* The Closure must return a RouteCollection instance.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

/**
* ClosureLoader loads routes from a PHP closure.
*
* The Closure must return a RouteCollection instance.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ClosureLoader extends Loader
Expand Down
14 changes: 7 additions & 7 deletions Loader/DelegatingLoader.php
@@ -1,18 +1,18 @@
<?php

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/**
* DelegatingLoader delegates route loading to other loaders using a loader resolver.
*
Expand Down
14 changes: 7 additions & 7 deletions Loader/FileLoader.php
@@ -1,18 +1,18 @@
<?php

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

use Symfony\Component\Routing\RouteCollection;

/**
* FileLoader is the abstract class used by all built-in loaders that are file based.
*
Expand Down
10 changes: 5 additions & 5 deletions Loader/Loader.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Routing\Loader;

/*
* This file is part of the Symfony framework.
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Loader;

/**
* Loader is the abstract class used by all built-in loaders.
*
Expand Down

0 comments on commit 4f225c9

Please sign in to comment.