Skip to content

Commit

Permalink
[DI] minor docblock fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Oct 24, 2017
1 parent 8393db9 commit f72f29d
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 22 deletions.
5 changes: 0 additions & 5 deletions DelegatingEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ public function exists($name)
return $this->getEngine($name)->exists($name);
}

/**
* Adds an engine.
*
* @param EngineInterface $engine An EngineInterface instance
*/
public function addEngine(EngineInterface $engine)
{
$this->engines[] = $engine;
Expand Down
5 changes: 0 additions & 5 deletions Helper/CoreAssetsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@ public function __construct(PackageInterface $defaultPackage, array $namedPackag
}
}

/**
* Sets the default package.
*
* @param PackageInterface $defaultPackage The default package
*/
public function setDefaultPackage(PackageInterface $defaultPackage)
{
$this->defaultPackage = $defaultPackage;
Expand Down
2 changes: 0 additions & 2 deletions Loader/CacheLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ public function __construct(LoaderInterface $loader, $dir)
/**
* Loads a template.
*
* @param TemplateReferenceInterface $template A template
*
* @return Storage|bool false if the template cannot be loaded, a Storage instance otherwise
*/
public function load(TemplateReferenceInterface $template)
Expand Down
4 changes: 0 additions & 4 deletions Loader/ChainLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public function __construct(array $loaders = array())

/**
* Adds a loader instance.
*
* @param LoaderInterface $loader A Loader instance
*/
public function addLoader(LoaderInterface $loader)
{
Expand All @@ -46,8 +44,6 @@ public function addLoader(LoaderInterface $loader)
/**
* Loads a template.
*
* @param TemplateReferenceInterface $template A template
*
* @return Storage|bool false if the template cannot be loaded, a Storage instance otherwise
*/
public function load(TemplateReferenceInterface $template)
Expand Down
2 changes: 0 additions & 2 deletions Loader/FilesystemLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public function __construct($templatePathPatterns)
/**
* Loads a template.
*
* @param TemplateReferenceInterface $template A template
*
* @return Storage|bool false if the template cannot be loaded, a Storage instance otherwise
*/
public function load(TemplateReferenceInterface $template)
Expand Down
2 changes: 0 additions & 2 deletions Loader/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ abstract class Loader implements LoaderInterface

/**
* Sets the debug logger to use for this loader.
*
* @param LoggerInterface $logger A logger instance
*/
public function setLogger(LoggerInterface $logger)
{
Expand Down
2 changes: 0 additions & 2 deletions Loader/LoaderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ interface LoaderInterface
/**
* Loads a template.
*
* @param TemplateReferenceInterface $template A template
*
* @return Storage|bool false if the template cannot be loaded, a Storage instance otherwise
*/
public function load(TemplateReferenceInterface $template);
Expand Down

0 comments on commit f72f29d

Please sign in to comment.