Skip to content

Commit 50a0f75

Browse files
committed
removed dots at the end of @param and @return
1 parent 74815b6 commit 50a0f75

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

ConfigCacheInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getPath();
3232
*
3333
* This check should take the metadata passed to the write() method into consideration.
3434
*
35-
* @return bool Whether the cache is still fresh.
35+
* @return bool Whether the cache is still fresh
3636
*/
3737
public function isFresh();
3838

Definition/ArrayNode.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,8 @@ protected function remapXml($value)
344344
/**
345345
* Merges values together.
346346
*
347-
* @param mixed $leftSide The left side to merge.
348-
* @param mixed $rightSide The right side to merge.
347+
* @param mixed $leftSide The left side to merge
348+
* @param mixed $rightSide The right side to merge
349349
*
350350
* @return mixed The merged values
351351
*

Definition/BaseNode.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function isRequired()
184184
/**
185185
* Returns the name of this node.
186186
*
187-
* @return string The Node's name.
187+
* @return string The Node's name
188188
*/
189189
public function getName()
190190
{
@@ -237,9 +237,9 @@ final public function merge($leftSide, $rightSide)
237237
/**
238238
* Normalizes a value, applying all normalization closures.
239239
*
240-
* @param mixed $value Value to normalize.
240+
* @param mixed $value Value to normalize
241241
*
242-
* @return mixed The normalized value.
242+
* @return mixed The normalized value
243243
*/
244244
final public function normalize($value)
245245
{
@@ -329,7 +329,7 @@ abstract protected function validateType($value);
329329
/**
330330
* Normalizes the value.
331331
*
332-
* @param mixed $value The value to normalize.
332+
* @param mixed $value The value to normalize
333333
*
334334
* @return mixed The normalized value
335335
*/

Definition/Builder/ArrayNodeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function fixXmlConfig($singular, $plural = null)
177177
* This method is applicable to prototype nodes only.
178178
*
179179
* @param string $name The name of the key
180-
* @param bool $removeKeyItem Whether or not the key item should be removed.
180+
* @param bool $removeKeyItem Whether or not the key item should be removed
181181
*
182182
* @return ArrayNodeDefinition
183183
*/

Definition/PrototypedArrayNode.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ protected function normalizeValue($value)
278278
/**
279279
* Merges values together.
280280
*
281-
* @param mixed $leftSide The left side to merge.
282-
* @param mixed $rightSide The right side to merge.
281+
* @param mixed $leftSide The left side to merge
282+
* @param mixed $rightSide The right side to merge
283283
*
284284
* @return mixed The merged values
285285
*

Definition/VariableNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function getDefaultValue()
5757
/**
5858
* Sets if this node is allowed to have an empty value.
5959
*
60-
* @param bool $boolean True if this entity will accept empty values.
60+
* @param bool $boolean True if this entity will accept empty values
6161
*/
6262
public function setAllowEmptyValue($boolean)
6363
{

0 commit comments

Comments
 (0)