Skip to content

Commit

Permalink
removed dots at the end of @param and @return
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jun 28, 2016
1 parent 662cead commit 19154a6
Show file tree
Hide file tree
Showing 54 changed files with 358 additions and 358 deletions.
10 changes: 5 additions & 5 deletions AbstractRendererEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ public function getResourceHierarchyLevel(FormView $view, array $blockNameHierar
*
* @see getResourceForBlock()
*
* @param string $cacheKey The cache key of the form view.
* @param FormView $view The form view for finding the applying themes.
* @param string $blockName The name of the block to load.
* @param string $cacheKey The cache key of the form view
* @param FormView $view The form view for finding the applying themes
* @param string $blockName The name of the block to load
*
* @return bool True if the resource could be loaded, false otherwise.
* @return bool True if the resource could be loaded, false otherwise
*/
abstract protected function loadResourceForBlockName($cacheKey, FormView $view, $blockName);

Expand All @@ -148,7 +148,7 @@ abstract protected function loadResourceForBlockName($cacheKey, FormView $view,
* @param int $hierarchyLevel The level in the block hierarchy that
* should be loaded.
*
* @return bool True if the resource could be loaded, false otherwise.
* @return bool True if the resource could be loaded, false otherwise
*/
private function loadResourceForBlockNameHierarchy($cacheKey, FormView $view, array $blockNameHierarchy, $hierarchyLevel)
{
Expand Down
2 changes: 1 addition & 1 deletion AbstractType.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function setDefaultOptions(OptionsResolverInterface $resolver)
/**
* Configures the options for this type.
*
* @param OptionsResolver $resolver The resolver for the options.
* @param OptionsResolver $resolver The resolver for the options
*/
public function configureOptions(OptionsResolver $resolver)
{
Expand Down
2 changes: 1 addition & 1 deletion AbstractTypeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function setDefaultOptions(OptionsResolverInterface $resolver)
/**
* Configures the options for this type.
*
* @param OptionsResolver $resolver The resolver for the options.
* @param OptionsResolver $resolver The resolver for the options
*/
public function configureOptions(OptionsResolver $resolver)
{
Expand Down
30 changes: 15 additions & 15 deletions Button.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Button implements \IteratorAggregate, FormInterface
/**
* Creates a new button from a form configuration.
*
* @param FormConfigInterface $config The button's configuration.
* @param FormConfigInterface $config The button's configuration
*/
public function __construct(FormConfigInterface $config)
{
Expand All @@ -51,7 +51,7 @@ public function __construct(FormConfigInterface $config)
*
* @param mixed $offset
*
* @return bool Always returns false.
* @return bool Always returns false
*/
public function offsetExists($offset)
{
Expand Down Expand Up @@ -152,7 +152,7 @@ public function get($name)
*
* @param string $name
*
* @return bool Always returns false.
* @return bool Always returns false
*/
public function has($name)
{
Expand Down Expand Up @@ -226,7 +226,7 @@ public function getViewData()
/**
* Unsupported method.
*
* @return array Always returns an empty array.
* @return array Always returns an empty array
*/
public function getExtraData()
{
Expand All @@ -236,7 +236,7 @@ public function getExtraData()
/**
* Returns the button's configuration.
*
* @return FormConfigInterface The configuration.
* @return FormConfigInterface The configuration
*/
public function getConfig()
{
Expand All @@ -246,7 +246,7 @@ public function getConfig()
/**
* Returns whether the button is submitted.
*
* @return bool true if the button was submitted.
* @return bool true if the button was submitted
*/
public function isSubmitted()
{
Expand All @@ -256,7 +256,7 @@ public function isSubmitted()
/**
* Returns the name by which the button is identified in forms.
*
* @return string The name of the button.
* @return string The name of the button
*/
public function getName()
{
Expand Down Expand Up @@ -285,7 +285,7 @@ public function addError(FormError $error)
/**
* Unsupported method.
*
* @return bool Always returns true.
* @return bool Always returns true
*/
public function isValid()
{
Expand All @@ -295,7 +295,7 @@ public function isValid()
/**
* Unsupported method.
*
* @return bool Always returns false.
* @return bool Always returns false
*/
public function isRequired()
{
Expand All @@ -317,7 +317,7 @@ public function isDisabled()
/**
* Unsupported method.
*
* @return bool Always returns true.
* @return bool Always returns true
*/
public function isEmpty()
{
Expand All @@ -327,7 +327,7 @@ public function isEmpty()
/**
* Unsupported method.
*
* @return bool Always returns true.
* @return bool Always returns true
*/
public function isSynchronized()
{
Expand Down Expand Up @@ -366,8 +366,8 @@ public function handleRequest($request = null)
/**
* Submits data to the button.
*
* @param null|string $submittedData The data.
* @param bool $clearMissing Not used.
* @param null|string $submittedData The data
* @param bool $clearMissing Not used
*
* @return Button The button instance
*
Expand Down Expand Up @@ -423,7 +423,7 @@ public function createView(FormView $parent = null)
/**
* Unsupported method.
*
* @return int Always returns 0.
* @return int Always returns 0
*/
public function count()
{
Expand All @@ -433,7 +433,7 @@ public function count()
/**
* Unsupported method.
*
* @return \EmptyIterator Always returns an empty iterator.
* @return \EmptyIterator Always returns an empty iterator
*/
public function getIterator()
{
Expand Down
Loading

0 comments on commit 19154a6

Please sign in to comment.