Forráskód Böngészése

Merge remote branch 'kriswallsmith/my-email-address'

* kriswallsmith/my-email-address:
  updated my email address
Fabien Potencier 14 éve
szülő
commit
8210fb2f0f
24 módosított fájl, 24 hozzáadás és 24 törlés
  1. 1 1
      src/Symfony/Bundle/AsseticBundle/AsseticBundle.php
  2. 1 1
      src/Symfony/Bundle/AsseticBundle/CacheWarmer/AssetManagerCacheWarmer.php
  3. 1 1
      src/Symfony/Bundle/AsseticBundle/CacheWarmer/AssetWriterCacheWarmer.php
  4. 1 1
      src/Symfony/Bundle/AsseticBundle/Command/DumpCommand.php
  5. 1 1
      src/Symfony/Bundle/AsseticBundle/Controller/AsseticController.php
  6. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/AsseticExtension.php
  7. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/AssetFactoryPass.php
  8. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/AssetManagerPass.php
  9. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/CheckClosureFilterPass.php
  10. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/CheckYuiFilterPass.php
  11. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/FilterManagerPass.php
  12. 1 1
      src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/TemplatingPass.php
  13. 1 1
      src/Symfony/Bundle/AsseticBundle/Factory/AssetFactory.php
  14. 1 1
      src/Symfony/Bundle/AsseticBundle/Factory/Loader/AsseticHelperFormulaLoader.php
  15. 1 1
      src/Symfony/Bundle/AsseticBundle/Factory/Resource/DirectoryResource.php
  16. 1 1
      src/Symfony/Bundle/AsseticBundle/Factory/Resource/FileResource.php
  17. 1 1
      src/Symfony/Bundle/AsseticBundle/FilterManager.php
  18. 1 1
      src/Symfony/Bundle/AsseticBundle/Listener/RequestListener.php
  19. 1 1
      src/Symfony/Bundle/AsseticBundle/Routing/AsseticLoader.php
  20. 1 1
      src/Symfony/Bundle/AsseticBundle/Templating/AsseticHelper.php
  21. 1 1
      src/Symfony/Bundle/AsseticBundle/Templating/DynamicAsseticHelper.php
  22. 1 1
      src/Symfony/Bundle/AsseticBundle/Templating/StaticAsseticHelper.php
  23. 1 1
      src/Symfony/Bundle/FrameworkBundle/Validator/ConstraintValidatorFactory.php
  24. 1 1
      src/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/AsseticBundle.php

@@ -23,7 +23,7 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
 /**
  * Assetic integration.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AsseticBundle extends Bundle
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/CacheWarmer/AssetManagerCacheWarmer.php

@@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 /**
  * The AssetManagerCacheWarmer warms up the formula loader.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AssetManagerCacheWarmer implements CacheWarmerInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/CacheWarmer/AssetWriterCacheWarmer.php

@@ -18,7 +18,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 /**
  * The AssetWriterCacheWarmer processes and writes the asset files.
  * 
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AssetWriterCacheWarmer implements CacheWarmerInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Command/DumpCommand.php

@@ -22,7 +22,7 @@ use Symfony\Component\Console\Output\OutputInterface;
 /**
  * Dumps assets to the filesystem.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class DumpCommand extends Command
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Controller/AsseticController.php

@@ -22,7 +22,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 /**
  * Serves assets.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AsseticController
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/AsseticExtension.php

@@ -22,7 +22,7 @@ use Symfony\Component\HttpKernel\DependencyInjection\Extension;
 /**
  * Semantic asset configuration.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AsseticExtension extends Extension
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/AssetFactoryPass.php

@@ -18,7 +18,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * Adds services tagged as workers to the asset factory.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AssetFactoryPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/AssetManagerPass.php

@@ -18,7 +18,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * Adds services tagged as assets to the asset manager.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AssetManagerPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/CheckClosureFilterPass.php

@@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * Tags either the closure JAR or API filter for the filter manager.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class CheckClosureFilterPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/CheckYuiFilterPass.php

@@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * Checks that the location of the YUI JAR has been configured.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class CheckYuiFilterPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/FilterManagerPass.php

@@ -18,7 +18,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * Adds services tagged as filters to the filter manager.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class FilterManagerPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/DependencyInjection/Compiler/TemplatingPass.php

@@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
 /**
  * This pass removes services associated with unused templating engines.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class TemplatingPass implements CompilerPassInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Factory/AssetFactory.php

@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\KernelInterface;
 /**
  * Loads asset formulae from the filesystem.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AssetFactory extends BaseAssetFactory
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Factory/Loader/AsseticHelperFormulaLoader.php

@@ -16,7 +16,7 @@ use Assetic\Factory\Loader\BasePhpFormulaLoader;
 /**
  * Loads formulae from Symfony2 PHP templates.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AsseticHelperFormulaLoader extends BasePhpFormulaLoader
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Factory/Resource/DirectoryResource.php

@@ -17,7 +17,7 @@ use Symfony\Component\Templating\Loader\LoaderInterface;
 /**
  * A directory resource that creates Symfony2 templating resources.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class DirectoryResource extends BaseDirectoryResource
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Factory/Resource/FileResource.php

@@ -18,7 +18,7 @@ use Symfony\Component\Templating\Loader\LoaderInterface;
 /**
  * A file resource.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class FileResource implements ResourceInterface
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/FilterManager.php

@@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 /**
  * Lazy filter manager.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class FilterManager extends BaseFilterManager
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Listener/RequestListener.php

@@ -16,7 +16,7 @@ use Symfony\Component\HttpKernel\Event\GetResponseEvent;
 /**
  * Adds a few formats to each request.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class RequestListener
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Routing/AsseticLoader.php

@@ -33,7 +33,7 @@ use Symfony\Component\Routing\RouteCollection;
  * In a production environment you should use the `assetic:dump` command to
  * create static asset files.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class AsseticLoader extends Loader
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Templating/AsseticHelper.php

@@ -18,7 +18,7 @@ use Symfony\Component\Templating\Helper\Helper;
 /**
  * The "assetic" templating helper.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 abstract class AsseticHelper extends Helper
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Templating/DynamicAsseticHelper.php

@@ -18,7 +18,7 @@ use Symfony\Bundle\FrameworkBundle\Templating\Helper\RouterHelper;
 /**
  * The dynamic "assetic" templating helper.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class DynamicAsseticHelper extends AsseticHelper
 {

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Templating/StaticAsseticHelper.php

@@ -18,7 +18,7 @@ use Symfony\Component\Templating\Helper\AssetsHelper;
 /**
  * The static "assetic" templating helper.
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class StaticAsseticHelper extends AsseticHelper
 {

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Validator/ConstraintValidatorFactory.php

@@ -34,7 +34,7 @@ use Symfony\Component\Validator\ConstraintValidatorFactoryInterface;
  *         return 'some_alias';
  *     }
  *
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  */
 class ConstraintValidatorFactory implements ConstraintValidatorFactoryInterface
 {

+ 1 - 1
src/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php

@@ -56,7 +56,7 @@ namespace Symfony\Component\ClassLoader;
  * found before giving up.
  *
  * @author Fabien Potencier <fabien@symfony.com>
- * @author Kris Wallsmith <kris.wallsmith@symfony.com>
+ * @author Kris Wallsmith <kris@symfony.com>
  *
  * @api
  */