8000 [StringUtil] Fixed singularification of the word 'movies' by gwijnja · Pull Request #14190 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[StringUtil] Fixed singularification of the word 'movies' #14190

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix some phpdocs for Twig extensions & templating helpers
  • Loading branch information
stloyd committed Apr 2, 2015
commit a95f7f38af2c7c6ce8266cf162a6eaff9bbcc45b
3 changes: 3 additions & 0 deletions src/Symfony/Bridge/Twig/Extension/CodeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@ public function formatFileFromText($text)
}, $text);
}

/**
* {@inheritdoc}
*/
public function getName()
{
return 'code';
Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ public function controller($controller, $attributes = array(), $query = array())
return new ControllerReference($controller, $attributes, $query);
}

/**
* {@inheritdoc}
*/
public function getName()
{
return 'http_kernel';
Expand Down
4 changes: 1 addition & 3 deletions src/Symfony/Bridge/Twig/Extension/RoutingExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ public function isUrlGenerationSafe(\Twig_Node $argsNode)
}

/**
* Returns the name of the extension.
*
* @return string The extension name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
4 changes: 1 addition & 3 deletions src/Symfony/Bridge/Twig/Extension/SecurityExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ public function getFunctions()
}

/**
* Returns the name of the extension.
*
* @return string The extension name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
4 changes: 1 addition & 3 deletions src/Symfony/Bridge/Twig/Extension/TranslationExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,7 @@ public function transchoice($message, $count, array $arguments = array(), $domai
}

/**
* Returns the name of the extension.
*
* @return string The extension name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
4 changes: 1 addition & 3 deletions src/Symfony/Bridge/Twig/Extension/YamlExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ public function dump($value, $inline = 0, $dumpObjects = false)
}

/**
* Returns the name of the extension.
*
* @return string The extension name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ public function controller($controller, $attributes = array(), $query = array())
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,7 @@ public function formatFileFromText($text)
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ public function getLocale()
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ public function generate($name, $parameters = array(), $referenceType = UrlGener
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ public function hasFlash($name)
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ public function transChoice($id, $number, array $parameters = array(), $domain =
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,7 @@ private function generateLogoutUrl($key, $referenceType)
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ public function isGranted($role, $object = null, $field = null)
}

/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Bundle/TwigBundle/Extension/ActionsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ public function getTokenParsers()
);
}

/**
* {@inheritdoc}
*/
public function getName()
{
return 'actions';
Expand Down
4 changes: 1 addition & 3 deletions src/Symfony/Bundle/TwigBundle/Extension/AssetsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ public function getAssetsVersion($packageName = null)
}

/**
* Returns the name of the extension.
*
* @return string The extension name
* {@inheritdoc}
*/
public function getName()
{
Expand Down
0