minor #24342 removed useless PHPDoc (OskarStark)

This PR was squashed before being merged into the 2.7 branch (closes #24342).

Discussion
----------

removed useless PHPDoc

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | no
| New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        | n/a

Commits
-------

5ee9043d8b removed useless PHPDoc
This commit is contained in:
Fabien Potencier 2017-09-30 07:00:25 -07:00
commit 72cc5df5fc
342 changed files with 0 additions and 825 deletions

View File

@ -27,8 +27,6 @@ class ProxyCacheWarmer implements CacheWarmerInterface
private $registry; private $registry;
/** /**
* Constructor.
*
* @param ManagerRegistry $registry A ManagerRegistry instance * @param ManagerRegistry $registry A ManagerRegistry instance
*/ */
public function __construct(ManagerRegistry $registry) public function __construct(ManagerRegistry $registry)

View File

@ -31,8 +31,6 @@ class ContainerAwareLoader extends Loader
private $container; private $container;
/** /**
* Constructor.
*
* @param ContainerInterface $container A ContainerInterface instance * @param ContainerInterface $container A ContainerInterface instance
*/ */
public function __construct(ContainerInterface $container) public function __construct(ContainerInterface $container)

View File

@ -97,8 +97,6 @@ abstract class RegisterMappingsPass implements CompilerPassInterface
private $aliasMap; private $aliasMap;
/** /**
* Constructor.
*
* The $managerParameters is an ordered list of container parameters that could provide the * The $managerParameters is an ordered list of container parameters that could provide the
* name of the manager to register these namespaces and alias on. The first non-empty name * name of the manager to register these namespaces and alias on. The first non-empty name
* is used, the others skipped. * is used, the others skipped.

View File

@ -54,8 +54,6 @@ class DbalSessionHandler implements \SessionHandlerInterface
private $timeCol = 'sess_time'; private $timeCol = 'sess_time';
/** /**
* Constructor.
*
* @param Connection $con A connection * @param Connection $con A connection
* @param string $tableName Table name * @param string $tableName Table name
*/ */

View File

@ -16,8 +16,6 @@ use Symfony\Component\Stopwatch\Stopwatch;
use Doctrine\DBAL\Logging\SQLLogger; use Doctrine\DBAL\Logging\SQLLogger;
/** /**
* DbalLogger.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class DbalLogger implements SQLLogger class DbalLogger implements SQLLogger
@ -29,8 +27,6 @@ class DbalLogger implements SQLLogger
protected $stopwatch; protected $stopwatch;
/** /**
* Constructor.
*
* @param LoggerInterface $logger A LoggerInterface instance * @param LoggerInterface $logger A LoggerInterface instance
* @param Stopwatch $stopwatch A Stopwatch instance * @param Stopwatch $stopwatch A Stopwatch instance
*/ */

View File

@ -56,8 +56,6 @@ class ConsoleHandler extends AbstractProcessingHandler implements EventSubscribe
); );
/** /**
* Constructor.
*
* @param OutputInterface|null $output The console output to use (the handler remains disabled when passing null * @param OutputInterface|null $output The console output to use (the handler remains disabled when passing null
* until the output is set, e.g. by using console events) * until the output is set, e.g. by using console events)
* @param bool $bubble Whether the messages that are handled can bubble up the stack * @param bool $bubble Whether the messages that are handled can bubble up the stack

View File

@ -41,8 +41,6 @@ class ProxyDumper implements DumperInterface
private $classGenerator; private $classGenerator;
/** /**
* Constructor.
*
* @param string $salt * @param string $salt
*/ */
public function __construct($salt = '') public function __construct($salt = '')

View File

@ -19,8 +19,6 @@ use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
/** /**
* MessageDataCollector.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* @author Clément JOBEILI <clement.jobeili@gmail.com> * @author Clément JOBEILI <clement.jobeili@gmail.com>
* *
@ -33,8 +31,6 @@ class MessageDataCollector extends DataCollector
private $isSpool; private $isSpool;
/** /**
* Constructor.
*
* We don't inject the message logger and mailer here * We don't inject the message logger and mailer here
* to avoid the creation of these objects when no emails are sent. * to avoid the creation of these objects when no emails are sent.
* *

View File

@ -26,8 +26,6 @@ class CodeExtension extends AbstractExtension
private $charset; private $charset;
/** /**
* Constructor.
*
* @param string $fileLinkFormat The format for links to source files * @param string $fileLinkFormat The format for links to source files
* @param string $rootDir The project root directory * @param string $rootDir The project root directory
* @param string $charset The charset * @param string $charset The charset

View File

@ -26,8 +26,6 @@ class HttpKernelExtension extends AbstractExtension
private $handler; private $handler;
/** /**
* Constructor.
*
* @param FragmentHandler $handler A FragmentHandler instance * @param FragmentHandler $handler A FragmentHandler instance
*/ */
public function __construct(FragmentHandler $handler) public function __construct(FragmentHandler $handler)

View File

@ -26,8 +26,6 @@ use Twig\Node\SetNode;
use Twig\NodeVisitor\AbstractNodeVisitor; use Twig\NodeVisitor\AbstractNodeVisitor;
/** /**
* TranslationDefaultDomainNodeVisitor.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class TranslationDefaultDomainNodeVisitor extends AbstractNodeVisitor class TranslationDefaultDomainNodeVisitor extends AbstractNodeVisitor
@ -37,9 +35,6 @@ class TranslationDefaultDomainNodeVisitor extends AbstractNodeVisitor
*/ */
private $scope; private $scope;
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this->scope = new Scope(); $this->scope = new Scope();

View File

@ -25,8 +25,6 @@ class RouterCacheWarmer implements CacheWarmerInterface
protected $router; protected $router;
/** /**
* Constructor.
*
* @param RouterInterface $router A Router instance * @param RouterInterface $router A Router instance
*/ */
public function __construct(RouterInterface $router) public function __construct(RouterInterface $router)

View File

@ -29,8 +29,6 @@ class TemplateFinder implements TemplateFinderInterface
private $templates; private $templates;
/** /**
* Constructor.
*
* @param KernelInterface $kernel A KernelInterface instance * @param KernelInterface $kernel A KernelInterface instance
* @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance * @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance
* @param string $rootDir The directory where global templates can be stored * @param string $rootDir The directory where global templates can be stored

View File

@ -25,8 +25,6 @@ class TemplatePathsCacheWarmer extends CacheWarmer
protected $locator; protected $locator;
/** /**
* Constructor.
*
* @param TemplateFinderInterface $finder A template finder * @param TemplateFinderInterface $finder A template finder
* @param TemplateLocator $locator The template locator * @param TemplateLocator $locator The template locator
*/ */

View File

@ -22,8 +22,6 @@ use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\HttpKernel\Bundle\Bundle;
/** /**
* Application.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class Application extends BaseApplication class Application extends BaseApplication
@ -32,8 +30,6 @@ class Application extends BaseApplication
private $commandsRegistered = false; private $commandsRegistered = false;
/** /**
* Constructor.
*
* @param KernelInterface $kernel A KernelInterface instance * @param KernelInterface $kernel A KernelInterface instance
*/ */
public function __construct(KernelInterface $kernel) public function __construct(KernelInterface $kernel)

View File

@ -24,9 +24,6 @@ use Symfony\Component\Console\Helper\DescriptorHelper as BaseDescriptorHelper;
*/ */
class DescriptorHelper extends BaseDescriptorHelper class DescriptorHelper extends BaseDescriptorHelper
{ {
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this $this

View File

@ -25,8 +25,6 @@ class ControllerNameParser
protected $kernel; protected $kernel;
/** /**
* Constructor.
*
* @param KernelInterface $kernel A KernelInterface instance * @param KernelInterface $kernel A KernelInterface instance
*/ */
public function __construct(KernelInterface $kernel) public function __construct(KernelInterface $kernel)

View File

@ -17,8 +17,6 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface;
/** /**
* ControllerResolver.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class ControllerResolver extends BaseControllerResolver class ControllerResolver extends BaseControllerResolver
@ -27,8 +25,6 @@ class ControllerResolver extends BaseControllerResolver
protected $parser; protected $parser;
/** /**
* Constructor.
*
* @param ContainerInterface $container A ContainerInterface instance * @param ContainerInterface $container A ContainerInterface instance
* @param ControllerNameParser $parser A ControllerNameParser instance * @param ControllerNameParser $parser A ControllerNameParser instance
* @param LoggerInterface $logger A LoggerInterface instance * @param LoggerInterface $logger A LoggerInterface instance

View File

@ -29,8 +29,6 @@ abstract class HttpCache extends BaseHttpCache
protected $kernel; protected $kernel;
/** /**
* Constructor.
*
* @param HttpKernelInterface $kernel An HttpKernelInterface instance * @param HttpKernelInterface $kernel An HttpKernelInterface instance
* @param string $cacheDir The cache directory (default used if null) * @param string $cacheDir The cache directory (default used if null)
*/ */

View File

@ -32,8 +32,6 @@ class DelegatingLoader extends BaseDelegatingLoader
private $loading = false; private $loading = false;
/** /**
* Constructor.
*
* @param ControllerNameParser $parser A ControllerNameParser instance * @param ControllerNameParser $parser A ControllerNameParser instance
* @param LoggerInterface $logger A LoggerInterface instance * @param LoggerInterface $logger A LoggerInterface instance
* @param LoaderResolverInterface $resolver A LoaderResolverInterface instance * @param LoaderResolverInterface $resolver A LoaderResolverInterface instance

View File

@ -29,8 +29,6 @@ class Router extends BaseRouter implements WarmableInterface
private $container; private $container;
/** /**
* Constructor.
*
* @param ContainerInterface $container A ContainerInterface instance * @param ContainerInterface $container A ContainerInterface instance
* @param mixed $resource The main resource to load * @param mixed $resource The main resource to load
* @param array $options An array of options * @param array $options An array of options

View File

@ -26,8 +26,6 @@ use Symfony\Component\Templating\Asset\PathPackage as BasePathPackage;
class PathPackage extends BasePathPackage class PathPackage extends BasePathPackage
{ {
/** /**
* Constructor.
*
* @param Request $request The current request * @param Request $request The current request
* @param string $version The version * @param string $version The version
* @param string $format The version format * @param string $format The version format

View File

@ -29,8 +29,6 @@ class Debugger implements DebuggerInterface
protected $logger; protected $logger;
/** /**
* Constructor.
*
* @param LoggerInterface $logger A LoggerInterface instance * @param LoggerInterface $logger A LoggerInterface instance
*/ */
public function __construct(LoggerInterface $logger = null) public function __construct(LoggerInterface $logger = null)

View File

@ -25,8 +25,6 @@ class DelegatingEngine extends BaseDelegatingEngine implements EngineInterface
protected $container; protected $container;
/** /**
* Constructor.
*
* @param ContainerInterface $container The DI container * @param ContainerInterface $container The DI container
* @param array $engineIds An array of engine Ids * @param array $engineIds An array of engine Ids
*/ */

View File

@ -25,8 +25,6 @@ class ActionsHelper extends Helper
private $handler; private $handler;
/** /**
* Constructor.
*
* @param FragmentHandler $handler A FragmentHandler instance * @param FragmentHandler $handler A FragmentHandler instance
*/ */
public function __construct(FragmentHandler $handler) public function __construct(FragmentHandler $handler)

View File

@ -14,8 +14,6 @@ namespace Symfony\Bundle\FrameworkBundle\Templating\Helper;
use Symfony\Component\Templating\Helper\Helper; use Symfony\Component\Templating\Helper\Helper;
/** /**
* CodeHelper.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class CodeHelper extends Helper class CodeHelper extends Helper
@ -25,8 +23,6 @@ class CodeHelper extends Helper
protected $charset; protected $charset;
/** /**
* Constructor.
*
* @param string $fileLinkFormat The format for links to source files * @param string $fileLinkFormat The format for links to source files
* @param string $rootDir The project root directory * @param string $rootDir The project root directory
* @param string $charset The charset * @param string $charset The charset

View File

@ -26,8 +26,6 @@ class RequestHelper extends Helper
protected $requestStack; protected $requestStack;
/** /**
* Constructor.
*
* @param Request|RequestStack $requestStack A RequestStack instance or a Request instance * @param Request|RequestStack $requestStack A RequestStack instance or a Request instance
* *
* @deprecated since version 2.5, passing a Request instance is deprecated and support for it will be removed in 3.0. * @deprecated since version 2.5, passing a Request instance is deprecated and support for it will be removed in 3.0.

View File

@ -24,8 +24,6 @@ class RouterHelper extends Helper
protected $generator; protected $generator;
/** /**
* Constructor.
*
* @param UrlGeneratorInterface $router A Router instance * @param UrlGeneratorInterface $router A Router instance
*/ */
public function __construct(UrlGeneratorInterface $router) public function __construct(UrlGeneratorInterface $router)

View File

@ -26,8 +26,6 @@ class SessionHelper extends Helper
protected $requestStack; protected $requestStack;
/** /**
* Constructor.
*
* @param Request|RequestStack $requestStack A RequestStack instance or a Request instance * @param Request|RequestStack $requestStack A RequestStack instance or a Request instance
* *
* @deprecated since version 2.5, passing a Request instance is deprecated and support for it will be removed in 3.0. * @deprecated since version 2.5, passing a Request instance is deprecated and support for it will be removed in 3.0.

View File

@ -15,8 +15,6 @@ use Symfony\Component\Templating\Helper\Helper;
use Symfony\Component\Translation\TranslatorInterface; use Symfony\Component\Translation\TranslatorInterface;
/** /**
* TranslatorHelper.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class TranslatorHelper extends Helper class TranslatorHelper extends Helper
@ -24,8 +22,6 @@ class TranslatorHelper extends Helper
protected $translator; protected $translator;
/** /**
* Constructor.
*
* @param TranslatorInterface $translator A TranslatorInterface instance * @param TranslatorInterface $translator A TranslatorInterface instance
*/ */
public function __construct(TranslatorInterface $translator) public function __construct(TranslatorInterface $translator)

View File

@ -26,8 +26,6 @@ class FilesystemLoader implements LoaderInterface
protected $locator; protected $locator;
/** /**
* Constructor.
*
* @param FileLocatorInterface $locator A FileLocatorInterface instance * @param FileLocatorInterface $locator A FileLocatorInterface instance
*/ */
public function __construct(FileLocatorInterface $locator) public function __construct(FileLocatorInterface $locator)

View File

@ -27,8 +27,6 @@ class TemplateLocator implements FileLocatorInterface
private $cacheHits = array(); private $cacheHits = array();
/** /**
* Constructor.
*
* @param FileLocatorInterface $locator A FileLocatorInterface instance * @param FileLocatorInterface $locator A FileLocatorInterface instance
* @param string $cacheDir The cache path * @param string $cacheDir The cache path
*/ */

View File

@ -27,8 +27,6 @@ class PhpEngine extends BasePhpEngine implements EngineInterface
protected $container; protected $container;
/** /**
* Constructor.
*
* @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance * @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance
* @param ContainerInterface $container The DI container * @param ContainerInterface $container The DI container
* @param LoaderInterface $loader A loader instance * @param LoaderInterface $loader A loader instance

View File

@ -28,8 +28,6 @@ class TemplateNameParser extends BaseTemplateNameParser
protected $cache = array(); protected $cache = array();
/** /**
* Constructor.
*
* @param KernelInterface $kernel A KernelInterface instance * @param KernelInterface $kernel A KernelInterface instance
*/ */
public function __construct(KernelInterface $kernel) public function __construct(KernelInterface $kernel)

View File

@ -26,8 +26,6 @@ class TimedPhpEngine extends PhpEngine
protected $stopwatch; protected $stopwatch;
/** /**
* Constructor.
*
* @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance * @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance
* @param ContainerInterface $container A ContainerInterface instance * @param ContainerInterface $container A ContainerInterface instance
* @param LoaderInterface $loader A LoaderInterface instance * @param LoaderInterface $loader A LoaderInterface instance

View File

@ -46,8 +46,6 @@ class Translator extends BaseTranslator implements WarmableInterface
private $resources = array(); private $resources = array();
/** /**
* Constructor.
*
* Available options: * Available options:
* *
* * cache_dir: The cache directory (or null to disable caching) * * cache_dir: The cache directory (or null to disable caching)

View File

@ -44,8 +44,6 @@ class ConstraintValidatorFactory implements ConstraintValidatorFactoryInterface
protected $validators; protected $validators;
/** /**
* Constructor.
*
* @param ContainerInterface $container The service container * @param ContainerInterface $container The service container
* @param array $validators An array of validators * @param array $validators An array of validators
*/ */

View File

@ -19,8 +19,6 @@ use Symfony\Component\HttpKernel\DataCollector\DataCollector;
use Symfony\Component\Security\Core\Role\RoleInterface; use Symfony\Component\Security\Core\Role\RoleInterface;
/** /**
* SecurityDataCollector.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class SecurityDataCollector extends DataCollector class SecurityDataCollector extends DataCollector
@ -29,8 +27,6 @@ class SecurityDataCollector extends DataCollector
private $roleHierarchy; private $roleHierarchy;
/** /**
* Constructor.
*
* @param TokenStorageInterface|null $tokenStorage * @param TokenStorageInterface|null $tokenStorage
* @param RoleHierarchyInterface|null $roleHierarchy * @param RoleHierarchyInterface|null $roleHierarchy
*/ */

View File

@ -37,8 +37,6 @@ class MainConfiguration implements ConfigurationInterface
private $userProviderFactories; private $userProviderFactories;
/** /**
* Constructor.
*
* @param array $factories * @param array $factories
* @param array $userProviderFactories * @param array $userProviderFactories
*/ */

View File

@ -27,8 +27,6 @@ class LogoutUrlHelper extends Helper
private $generator; private $generator;
/** /**
* Constructor.
*
* @param ContainerInterface|LogoutUrlGenerator $generator A ContainerInterface or LogoutUrlGenerator instance * @param ContainerInterface|LogoutUrlGenerator $generator A ContainerInterface or LogoutUrlGenerator instance
* @param UrlGeneratorInterface|null $router The router service * @param UrlGeneratorInterface|null $router The router service
* @param TokenStorageInterface|null $tokenStorage The token storage service * @param TokenStorageInterface|null $tokenStorage The token storage service

View File

@ -30,8 +30,6 @@ class TemplateCacheCacheWarmer implements CacheWarmerInterface
protected $finder; protected $finder;
/** /**
* Constructor.
*
* @param ContainerInterface $container The dependency injection container * @param ContainerInterface $container The dependency injection container
* @param TemplateFinderInterface|null $finder The template paths cache warmer * @param TemplateFinderInterface|null $finder The template paths cache warmer
*/ */

View File

@ -29,8 +29,6 @@ class FilesystemLoader extends BaseFilesystemLoader
protected $parser; protected $parser;
/** /**
* Constructor.
*
* @param FileLocatorInterface $locator A FileLocatorInterface instance * @param FileLocatorInterface $locator A FileLocatorInterface instance
* @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance * @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance
*/ */

View File

@ -22,8 +22,6 @@ use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Twig\Environment; use Twig\Environment;
/** /**
* ProfilerController.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class ProfilerController class ProfilerController
@ -36,8 +34,6 @@ class ProfilerController
private $toolbarPosition; private $toolbarPosition;
/** /**
* Constructor.
*
* @param UrlGeneratorInterface $generator The URL Generator * @param UrlGeneratorInterface $generator The URL Generator
* @param Profiler $profiler The profiler * @param Profiler $profiler The profiler
* @param Environment $twig The twig environment * @param Environment $twig The twig environment

View File

@ -45,8 +45,6 @@ abstract class Client
private $isMainRequest = true; private $isMainRequest = true;
/** /**
* Constructor.
*
* @param array $server The server parameters (equivalent of $_SERVER) * @param array $server The server parameters (equivalent of $_SERVER)
* @param History $history A History instance to store the browser history * @param History $history A History instance to store the browser history
* @param CookieJar $cookieJar A CookieJar instance to store the cookies * @param CookieJar $cookieJar A CookieJar instance to store the cookies

View File

@ -12,8 +12,6 @@
namespace Symfony\Component\BrowserKit; namespace Symfony\Component\BrowserKit;
/** /**
* Request object.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class Request class Request
@ -27,8 +25,6 @@ class Request
protected $content; protected $content;
/** /**
* Constructor.
*
* @param string $uri The request URI * @param string $uri The request URI
* @param string $method The HTTP method request * @param string $method The HTTP method request
* @param array $parameters The request parameters * @param array $parameters The request parameters

View File

@ -12,8 +12,6 @@
namespace Symfony\Component\BrowserKit; namespace Symfony\Component\BrowserKit;
/** /**
* Response object.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class Response class Response
@ -23,8 +21,6 @@ class Response
protected $headers; protected $headers;
/** /**
* Constructor.
*
* The headers array is a set of key/value pairs. If a header is present multiple times * The headers array is a set of key/value pairs. If a header is present multiple times
* then the value is an array of all the values. * then the value is an array of all the values.
* *

View File

@ -57,8 +57,6 @@ class ApcClassLoader
protected $decorated; protected $decorated;
/** /**
* Constructor.
*
* @param string $prefix The APC namespace prefix to use * @param string $prefix The APC namespace prefix to use
* @param object $decorated A class loader object that implements the findFile() method * @param object $decorated A class loader object that implements the findFile() method
* *

View File

@ -68,8 +68,6 @@ class ApcUniversalClassLoader extends UniversalClassLoader
private $prefix; private $prefix;
/** /**
* Constructor.
*
* @param string $prefix A prefix to create a namespace in APC * @param string $prefix A prefix to create a namespace in APC
* *
* @throws \RuntimeException * @throws \RuntimeException

View File

@ -31,8 +31,6 @@ class DebugClassLoader
private $classFinder; private $classFinder;
/** /**
* Constructor.
*
* @param object $classFinder * @param object $classFinder
*/ */
public function __construct($classFinder) public function __construct($classFinder)

View File

@ -21,8 +21,6 @@ class MapClassLoader
private $map = array(); private $map = array();
/** /**
* Constructor.
*
* @param array $map A map where keys are classes and values the absolute file path * @param array $map A map where keys are classes and values the absolute file path
*/ */
public function __construct(array $map) public function __construct(array $map)

View File

@ -58,8 +58,6 @@ class WinCacheClassLoader
protected $decorated; protected $decorated;
/** /**
* Constructor.
*
* @param string $prefix The WinCache namespace prefix to use * @param string $prefix The WinCache namespace prefix to use
* @param object $decorated A class loader object that implements the findFile() method * @param object $decorated A class loader object that implements the findFile() method
* *

View File

@ -58,8 +58,6 @@ class XcacheClassLoader
private $decorated; private $decorated;
/** /**
* Constructor.
*
* @param string $prefix The XCache namespace prefix to use * @param string $prefix The XCache namespace prefix to use
* @param object $decorated A class loader object that implements the findFile() method * @param object $decorated A class loader object that implements the findFile() method
* *

View File

@ -33,8 +33,6 @@ abstract class BaseNode implements NodeInterface
protected $attributes = array(); protected $attributes = array();
/** /**
* Constructor.
*
* @param string $name The name of the node * @param string $name The name of the node
* @param NodeInterface $parent The parent of this node * @param NodeInterface $parent The parent of this node
* *

View File

@ -26,8 +26,6 @@ class ExprBuilder
public $thenPart; public $thenPart;
/** /**
* Constructor.
*
* @param NodeDefinition $node The related node * @param NodeDefinition $node The related node
*/ */
public function __construct(NodeDefinition $node) public function __construct(NodeDefinition $node)

View File

@ -23,8 +23,6 @@ class MergeBuilder
public $allowOverwrite = true; public $allowOverwrite = true;
/** /**
* Constructor.
*
* @param NodeDefinition $node The related node * @param NodeDefinition $node The related node
*/ */
public function __construct(NodeDefinition $node) public function __construct(NodeDefinition $node)

View File

@ -21,9 +21,6 @@ class NodeBuilder implements NodeParentInterface
protected $parent; protected $parent;
protected $nodeMapping; protected $nodeMapping;
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this->nodeMapping = array( $this->nodeMapping = array(

View File

@ -40,8 +40,6 @@ abstract class NodeDefinition implements NodeParentInterface
protected $attributes = array(); protected $attributes = array();
/** /**
* Constructor.
*
* @param string $name The name of the node * @param string $name The name of the node
* @param NodeParentInterface|null $parent The parent * @param NodeParentInterface|null $parent The parent
*/ */

View File

@ -23,8 +23,6 @@ class NormalizationBuilder
public $remappings = array(); public $remappings = array();
/** /**
* Constructor.
*
* @param NodeDefinition $node The related node * @param NodeDefinition $node The related node
*/ */
public function __construct(NodeDefinition $node) public function __construct(NodeDefinition $node)

View File

@ -22,8 +22,6 @@ class ValidationBuilder
public $rules = array(); public $rules = array();
/** /**
* Constructor.
*
* @param NodeDefinition $node The related node * @param NodeDefinition $node The related node
*/ */
public function __construct(NodeDefinition $node) public function __construct(NodeDefinition $node)

View File

@ -21,8 +21,6 @@ class FileLocator implements FileLocatorInterface
protected $paths; protected $paths;
/** /**
* Constructor.
*
* @param string|array $paths A path or an array of paths where to look for resources * @param string|array $paths A path or an array of paths where to look for resources
*/ */
public function __construct($paths = array()) public function __construct($paths = array())

View File

@ -24,8 +24,6 @@ use Symfony\Component\Config\Exception\FileLoaderLoadException;
class DelegatingLoader extends Loader class DelegatingLoader extends Loader
{ {
/** /**
* Constructor.
*
* @param LoaderResolverInterface $resolver A LoaderResolverInterface instance * @param LoaderResolverInterface $resolver A LoaderResolverInterface instance
*/ */
public function __construct(LoaderResolverInterface $resolver) public function __construct(LoaderResolverInterface $resolver)

View File

@ -35,8 +35,6 @@ abstract class FileLoader extends Loader
private $currentDir; private $currentDir;
/** /**
* Constructor.
*
* @param FileLocatorInterface $locator A FileLocatorInterface instance * @param FileLocatorInterface $locator A FileLocatorInterface instance
*/ */
public function __construct(FileLocatorInterface $locator) public function __construct(FileLocatorInterface $locator)

View File

@ -27,8 +27,6 @@ class LoaderResolver implements LoaderResolverInterface
private $loaders = array(); private $loaders = array();
/** /**
* Constructor.
*
* @param LoaderInterface[] $loaders An array of loaders * @param LoaderInterface[] $loaders An array of loaders
*/ */
public function __construct(array $loaders = array()) public function __construct(array $loaders = array())

View File

@ -22,8 +22,6 @@ class DirectoryResource implements ResourceInterface, \Serializable
private $pattern; private $pattern;
/** /**
* Constructor.
*
* @param string $resource The file path to the resource * @param string $resource The file path to the resource
* @param string|null $pattern A pattern to restrict monitored files * @param string|null $pattern A pattern to restrict monitored files
*/ */

View File

@ -26,8 +26,6 @@ class FileResource implements ResourceInterface, \Serializable
private $resource; private $resource;
/** /**
* Constructor.
*
* @param string $resource The file path to the resource * @param string $resource The file path to the resource
*/ */
public function __construct($resource) public function __construct($resource)

View File

@ -75,8 +75,6 @@ class Application
private $initialized; private $initialized;
/** /**
* Constructor.
*
* @param string $name The name of the application * @param string $name The name of the application
* @param string $version The version of the application * @param string $version The version of the application
*/ */

View File

@ -45,8 +45,6 @@ class Command
private $helperSet; private $helperSet;
/** /**
* Constructor.
*
* @param string|null $name The name of the command; passing null means it must be set in configure() * @param string|null $name The name of the command; passing null means it must be set in configure()
* *
* @throws \LogicException When the command name is empty * @throws \LogicException When the command name is empty

View File

@ -49,8 +49,6 @@ class ApplicationDescription
private $aliases; private $aliases;
/** /**
* Constructor.
*
* @param Application $application * @param Application $application
* @param string|null $namespace * @param string|null $namespace
*/ */

View File

@ -27,8 +27,6 @@ class OutputFormatterStyleStack
private $emptyStyle; private $emptyStyle;
/** /**
* Constructor.
*
* @param OutputFormatterStyleInterface|null $emptyStyle * @param OutputFormatterStyleInterface|null $emptyStyle
*/ */
public function __construct(OutputFormatterStyleInterface $emptyStyle = null) public function __construct(OutputFormatterStyleInterface $emptyStyle = null)

View File

@ -30,9 +30,6 @@ class DescriptorHelper extends Helper
*/ */
private $descriptors = array(); private $descriptors = array();
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this $this

View File

@ -27,8 +27,6 @@ class HelperSet implements \IteratorAggregate
private $command; private $command;
/** /**
* Constructor.
*
* @param Helper[] $helpers An array of helper * @param Helper[] $helpers An array of helper
*/ */
public function __construct(array $helpers = array()) public function __construct(array $helpers = array())

View File

@ -49,8 +49,6 @@ class ProgressBar
private static $formats; private static $formats;
/** /**
* Constructor.
*
* @param OutputInterface $output An OutputInterface instance * @param OutputInterface $output An OutputInterface instance
* @param int $max Maximum steps (0 if unknown) * @param int $max Maximum steps (0 if unknown)
*/ */

View File

@ -42,8 +42,6 @@ class ArgvInput extends Input
private $parsed; private $parsed;
/** /**
* Constructor.
*
* @param array|null $argv An array of parameters from the CLI (in the argv format) * @param array|null $argv An array of parameters from the CLI (in the argv format)
* @param InputDefinition|null $definition A InputDefinition instance * @param InputDefinition|null $definition A InputDefinition instance
*/ */

View File

@ -25,8 +25,6 @@ class ArrayInput extends Input
private $parameters; private $parameters;
/** /**
* Constructor.
*
* @param array $parameters An array of parameters * @param array $parameters An array of parameters
* @param InputDefinition|null $definition A InputDefinition instance * @param InputDefinition|null $definition A InputDefinition instance
*/ */

View File

@ -33,8 +33,6 @@ abstract class Input implements InputInterface
protected $interactive = true; protected $interactive = true;
/** /**
* Constructor.
*
* @param InputDefinition|null $definition A InputDefinition instance * @param InputDefinition|null $definition A InputDefinition instance
*/ */
public function __construct(InputDefinition $definition = null) public function __construct(InputDefinition $definition = null)

View File

@ -28,8 +28,6 @@ class InputArgument
private $description; private $description;
/** /**
* Constructor.
*
* @param string $name The argument name * @param string $name The argument name
* @param int $mode The argument mode: self::REQUIRED or self::OPTIONAL * @param int $mode The argument mode: self::REQUIRED or self::OPTIONAL
* @param string $description A description text * @param string $description A description text

View File

@ -37,8 +37,6 @@ class InputDefinition
private $shortcuts; private $shortcuts;
/** /**
* Constructor.
*
* @param array $definition An array of InputArgument and InputOption instance * @param array $definition An array of InputArgument and InputOption instance
*/ */
public function __construct(array $definition = array()) public function __construct(array $definition = array())

View File

@ -30,8 +30,6 @@ class InputOption
private $description; private $description;
/** /**
* Constructor.
*
* @param string $name The option name * @param string $name The option name
* @param string|array $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts * @param string|array $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
* @param int $mode The option mode: One of the VALUE_* constants * @param int $mode The option mode: One of the VALUE_* constants

View File

@ -26,8 +26,6 @@ class StringInput extends ArgvInput
const REGEX_QUOTED_STRING = '(?:"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)"|\'([^\'\\\\]*(?:\\\\.[^\'\\\\]*)*)\')'; const REGEX_QUOTED_STRING = '(?:"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)"|\'([^\'\\\\]*(?:\\\\.[^\'\\\\]*)*)\')';
/** /**
* Constructor.
*
* @param string $input An array of parameters from the CLI (in the argv format) * @param string $input An array of parameters from the CLI (in the argv format)
* @param InputDefinition $definition A InputDefinition instance * @param InputDefinition $definition A InputDefinition instance
* *

View File

@ -34,8 +34,6 @@ class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface
private $stderr; private $stderr;
/** /**
* Constructor.
*
* @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
* @param bool|null $decorated Whether to decorate messages (null for auto-guessing) * @param bool|null $decorated Whether to decorate messages (null for auto-guessing)
* @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter) * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)

View File

@ -33,8 +33,6 @@ abstract class Output implements OutputInterface
private $formatter; private $formatter;
/** /**
* Constructor.
*
* @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
* @param bool $decorated Whether to decorate messages * @param bool $decorated Whether to decorate messages
* @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter) * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)

View File

@ -31,8 +31,6 @@ class StreamOutput extends Output
private $stream; private $stream;
/** /**
* Constructor.
*
* @param resource $stream A stream resource * @param resource $stream A stream resource
* @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
* @param bool|null $decorated Whether to decorate messages (null for auto-guessing) * @param bool|null $decorated Whether to decorate messages (null for auto-guessing)

View File

@ -24,8 +24,6 @@ class ChoiceQuestion extends Question
private $errorMessage = 'Value "%s" is invalid'; private $errorMessage = 'Value "%s" is invalid';
/** /**
* Constructor.
*
* @param string $question The question to ask to the user * @param string $question The question to ask to the user
* @param array $choices The list of available choices * @param array $choices The list of available choices
* @param mixed $default The default answer to return * @param mixed $default The default answer to return

View File

@ -21,8 +21,6 @@ class ConfirmationQuestion extends Question
private $trueAnswerRegex; private $trueAnswerRegex;
/** /**
* Constructor.
*
* @param string $question The question to ask to the user * @param string $question The question to ask to the user
* @param bool $default The default answer to return, true or false * @param bool $default The default answer to return, true or false
* @param string $trueAnswerRegex A regex to match the "yes" answer * @param string $trueAnswerRegex A regex to match the "yes" answer

View File

@ -28,8 +28,6 @@ class Question
private $normalizer; private $normalizer;
/** /**
* Constructor.
*
* @param string $question The question to ask to the user * @param string $question The question to ask to the user
* @param mixed $default The default answer to return if the user enters nothing * @param mixed $default The default answer to return if the user enters nothing
*/ */

View File

@ -34,8 +34,6 @@ class Shell
private $processIsolation = false; private $processIsolation = false;
/** /**
* Constructor.
*
* If there is no readline support for the current PHP executable * If there is no readline support for the current PHP executable
* a \RuntimeException exception is thrown. * a \RuntimeException exception is thrown.
* *

View File

@ -35,8 +35,6 @@ class ApplicationTester
private $statusCode; private $statusCode;
/** /**
* Constructor.
*
* @param Application $application An Application instance to test * @param Application $application An Application instance to test
*/ */
public function __construct(Application $application) public function __construct(Application $application)

View File

@ -30,8 +30,6 @@ class CommandTester
private $statusCode; private $statusCode;
/** /**
* Constructor.
*
* @param Command $command A Command instance to test * @param Command $command A Command instance to test
*/ */
public function __construct(Command $command) public function __construct(Command $command)

View File

@ -43,8 +43,6 @@ class Specificity
private $c; private $c;
/** /**
* Constructor.
*
* @param int $a * @param int $a
* @param int $b * @param int $b
* @param int $c * @param int $c

View File

@ -31,8 +31,6 @@ class Parser implements ParserInterface
private $tokenizer; private $tokenizer;
/** /**
* Constructor.
*
* @param null|Tokenizer $tokenizer * @param null|Tokenizer $tokenizer
*/ */
public function __construct(Tokenizer $tokenizer = null) public function __construct(Tokenizer $tokenizer = null)

View File

@ -31,9 +31,6 @@ class Tokenizer
*/ */
private $handlers; private $handlers;
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$patterns = new TokenizerPatterns(); $patterns = new TokenizerPatterns();

View File

@ -81,9 +81,6 @@ class TokenizerPatterns
*/ */
private $quotedStringPattern; private $quotedStringPattern;
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this->unicodeEscapePattern = '\\\\([0-9a-f]{1,6})(?:\r\n|[ \n\r\t\f])?'; $this->unicodeEscapePattern = '\\\\([0-9a-f]{1,6})(?:\r\n|[ \n\r\t\f])?';

View File

@ -27,8 +27,6 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
class HtmlExtension extends AbstractExtension class HtmlExtension extends AbstractExtension
{ {
/** /**
* Constructor.
*
* @param Translator $translator * @param Translator $translator
*/ */
public function __construct(Translator $translator) public function __construct(Translator $translator)

View File

@ -35,8 +35,6 @@ class NodeExtension extends AbstractExtension
private $flags; private $flags;
/** /**
* Constructor.
*
* @param int $flags * @param int $flags
*/ */
public function __construct($flags = 0) public function __construct($flags = 0)

View File

@ -34,8 +34,6 @@ class DebugClassLoader
private static $darwinCache = array('/' => array('/', array())); private static $darwinCache = array('/' => array('/', array()));
/** /**
* Constructor.
*
* @param callable|object $classLoader Passing an object is @deprecated since version 2.5 and support for it will be removed in 3.0 * @param callable|object $classLoader Passing an object is @deprecated since version 2.5 and support for it will be removed in 3.0
*/ */
public function __construct($classLoader) public function __construct($classLoader)

View File

@ -813,8 +813,6 @@ use Symfony\Component\DependencyInjection\Exception\RuntimeException;
$bagClass $bagClass
/*{$this->docStar} /*{$this->docStar}
* $class.
*
* This class has been auto-generated * This class has been auto-generated
* by the Symfony Dependency Injection Component. * by the Symfony Dependency Injection Component.
*/ */
@ -838,9 +836,6 @@ EOF;
$code = <<<EOF $code = <<<EOF
/*{$this->docStar}
* Constructor.
*/
public function __construct() public function __construct()
{{$targetDirs} {{$targetDirs}
parent::__construct($arguments); parent::__construct($arguments);
@ -875,9 +870,6 @@ EOF;
$code = <<<EOF $code = <<<EOF
/*{$this->docStar}
* Constructor.
*/
public function __construct() public function __construct()
{{$targetDirs} {{$targetDirs}
EOF; EOF;

View File

@ -11,8 +11,6 @@ use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
/** /**
* Container.
*
* This class has been auto-generated * This class has been auto-generated
* by the Symfony Dependency Injection Component. * by the Symfony Dependency Injection Component.
*/ */
@ -21,9 +19,6 @@ class Container extends AbstractContainer
private $parameters; private $parameters;
private $targetDirs = array(); private $targetDirs = array();
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
parent::__construct(); parent::__construct();

View File

@ -9,8 +9,6 @@ use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
/** /**
* ProjectServiceContainer.
*
* This class has been auto-generated * This class has been auto-generated
* by the Symfony Dependency Injection Component. * by the Symfony Dependency Injection Component.
*/ */
@ -19,9 +17,6 @@ class ProjectServiceContainer extends Container
private $parameters; private $parameters;
private $targetDirs = array(); private $targetDirs = array();
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
parent::__construct(); parent::__construct();

View File

@ -9,8 +9,6 @@ use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag; use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
/** /**
* ProjectServiceContainer.
*
* This class has been auto-generated * This class has been auto-generated
* by the Symfony Dependency Injection Component. * by the Symfony Dependency Injection Component.
*/ */
@ -19,9 +17,6 @@ class ProjectServiceContainer extends Container
private $parameters; private $parameters;
private $targetDirs = array(); private $targetDirs = array();
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$this->parameters = $this->getDefaultParameters(); $this->parameters = $this->getDefaultParameters();

View File

@ -9,8 +9,6 @@ use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag; use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
/** /**
* ProjectServiceContainer.
*
* This class has been auto-generated * This class has been auto-generated
* by the Symfony Dependency Injection Component. * by the Symfony Dependency Injection Component.
*/ */
@ -19,9 +17,6 @@ class ProjectServiceContainer extends Container
private $parameters; private $parameters;
private $targetDirs = array(); private $targetDirs = array();
/**
* Constructor.
*/
public function __construct() public function __construct()
{ {
$dir = __DIR__; $dir = __DIR__;

Some files were not shown because too many files have changed in this diff Show More