Commit 595c8531 authored by Igor Wiedler's avatar Igor Wiedler

adjust e-mail address to @symfony.com and @author to myself (where appropriate)

parent c58bc69f
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Kernel; ...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Kernel;
/** /**
* The Compiler class compiles the Silex framework. * The Compiler class compiles the Silex framework.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Fabien Potencier <fabien.potencier@symfony.com>
*/ */
class Compiler class Compiler
{ {
...@@ -67,7 +67,7 @@ class Compiler ...@@ -67,7 +67,7 @@ class Compiler
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
...@@ -27,7 +27,7 @@ use Symfony\Component\Routing\Matcher\UrlMatcher; ...@@ -27,7 +27,7 @@ use Symfony\Component\Routing\Matcher\UrlMatcher;
/** /**
* The Silex framework class. * The Silex framework class.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Fabien Potencier <fabien.potencier@symfony.com>
*/ */
class Framework extends HttpKernel implements EventSubscriberInterface class Framework extends HttpKernel implements EventSubscriberInterface
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Test\WebTestCase as BaseWebTestCase; ...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Test\WebTestCase as BaseWebTestCase;
/** /**
* WebTestCase is the base class for functional tests. * WebTestCase is the base class for functional tests.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.com> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
abstract class WebTestCase extends BaseWebTestCase abstract class WebTestCase extends BaseWebTestCase
{ {
......
...@@ -10,7 +10,7 @@ use Symfony\Component\HttpFoundation\Response; ...@@ -10,7 +10,7 @@ use Symfony\Component\HttpFoundation\Response;
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
...@@ -19,7 +19,7 @@ use Symfony\Component\HttpFoundation\Response; ...@@ -19,7 +19,7 @@ use Symfony\Component\HttpFoundation\Response;
/** /**
* Error handler test cases. * Error handler test cases.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class BeforeAfterFilterTest extends \PHPUnit_Framework_TestCase class BeforeAfterFilterTest extends \PHPUnit_Framework_TestCase
{ {
......
...@@ -10,7 +10,7 @@ use Symfony\Component\HttpFoundation\Response; ...@@ -10,7 +10,7 @@ use Symfony\Component\HttpFoundation\Response;
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
...@@ -19,7 +19,7 @@ use Symfony\Component\HttpFoundation\Response; ...@@ -19,7 +19,7 @@ use Symfony\Component\HttpFoundation\Response;
/** /**
* Error handler test cases. * Error handler test cases.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class ErrorHandlerTest extends \PHPUnit_Framework_TestCase class ErrorHandlerTest extends \PHPUnit_Framework_TestCase
{ {
......
...@@ -8,7 +8,7 @@ use Symfony\Component\HttpFoundation\Request; ...@@ -8,7 +8,7 @@ use Symfony\Component\HttpFoundation\Request;
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
...@@ -17,7 +17,7 @@ use Symfony\Component\HttpFoundation\Request; ...@@ -17,7 +17,7 @@ use Symfony\Component\HttpFoundation\Request;
/** /**
* Framework test cases. * Framework test cases.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class FrameworkTest extends \PHPUnit_Framework_TestCase class FrameworkTest extends \PHPUnit_Framework_TestCase
{ {
......
...@@ -12,7 +12,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; ...@@ -12,7 +12,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
...@@ -21,7 +21,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; ...@@ -21,7 +21,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/** /**
* Router test cases. * Router test cases.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class RouterTest extends \PHPUnit_Framework_TestCase class RouterTest extends \PHPUnit_Framework_TestCase
{ {
......
...@@ -8,7 +8,7 @@ use Silex\WebTestCase; ...@@ -8,7 +8,7 @@ use Silex\WebTestCase;
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.org> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
...@@ -17,7 +17,7 @@ use Silex\WebTestCase; ...@@ -17,7 +17,7 @@ use Silex\WebTestCase;
/** /**
* Functional test cases. * Functional test cases.
* *
* @author Fabien Potencier <fabien.potencier@symfony-project.org> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class WebTestCaseTest extends WebTestCase class WebTestCaseTest extends WebTestCase
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* /*
* This file is part of the Silex framework. * This file is part of the Silex framework.
* *
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony.com>
* *
* For the full copyright and license information, please view the LICENSE * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * file that was distributed with this source code.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment