Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 4, 2014
1 parent 2148656 commit 1e92f58
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
6 changes: 3 additions & 3 deletions DataCollector/Util/ValueExporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class ValueExporter
/**
* Converts a PHP value to a string.
*
* @param mixed $value The PHP value
* @param int $depth only for internal usage
* @param bool $deep only for internal usage
* @param mixed $value The PHP value
* @param int $depth only for internal usage
* @param bool $deep only for internal usage
*
* @return string The string representation of the given value
*/
Expand Down
2 changes: 1 addition & 1 deletion Event/KernelEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function getRequestType()
/**
* Checks if this is a master request.
*
* @return bool True if the request is a master request
* @return bool True if the request is a master request
*
* @api
*/
Expand Down
2 changes: 1 addition & 1 deletion EventListener/ExceptionListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function logException(\Exception $exception, $message, $original = tru
* Clones the request for the exception.
*
* @param \Exception $exception The thrown exception.
* @param Request $request The original request.
* @param Request $request The original request.
*
* @return Request $request The cloned request.
*/
Expand Down
1 change: 0 additions & 1 deletion EventListener/SaveSessionListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\KernelEvents;

/**
Expand Down
6 changes: 3 additions & 3 deletions Exception/UnprocessableEntityHttpException.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class UnprocessableEntityHttpException extends HttpException
/**
* Constructor.
*
* @param string $message The internal exception message
* @param \Exception $previous The previous exception
* @param int $code The internal exception code
* @param string $message The internal exception message
* @param \Exception $previous The previous exception
* @param int $code The internal exception code
*/
public function __construct($message = null, \Exception $previous = null, $code = 0)
{
Expand Down
2 changes: 0 additions & 2 deletions Tests/Bundle/BundleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

namespace Symfony\Component\HttpKernel\Tests\Bundle;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionAbsentBundle\ExtensionAbsentBundle;
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command\FooCommand;
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\ExtensionPresentBundle;
Expand Down

0 comments on commit 1e92f58

Please sign in to comment.