Skip to content

Commit 0a510f2

Browse files
committed
Fixed doc comments
1 parent b41aa09 commit 0a510f2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

VerbalExpressions.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class VerEx {
2121
*
2222
* @access public
2323
* @param string $value the to be added
24-
* @return string escaped value
24+
* @return string escaped value
2525
*/
2626
public function sanitize($value)
2727
{
@@ -90,6 +90,7 @@ public function then($value)
9090
/**
9191
* alias for then()
9292
* @param string $value The string to be looked for
93+
* @return VerEx
9394
*/
9495
public function find($value)
9596
{
@@ -204,7 +205,7 @@ public function lineBreak()
204205
* Shorthand for lineBreak
205206
*
206207
* @access public
207-
* return object
208+
* return VerEx
208209
*/
209210
public function br()
210211
{
@@ -272,6 +273,7 @@ public function any($value)
272273
*
273274
* @access public
274275
* @return VerEx
276+
* @throws Exception
275277
*/
276278
public function range()
277279
{
@@ -301,7 +303,7 @@ public function range()
301303
* Adds a modifier
302304
*
303305
* @access public
304-
* @param str $modifier
306+
* @param string $modifier
305307
* @return VerEx
306308
*/
307309
public function addModifier($modifier)
@@ -319,7 +321,7 @@ public function addModifier($modifier)
319321
* Removes a modifier
320322
*
321323
* @access public
322-
* @param str $modifier
324+
* @param string $modifier
323325
* @return VerEx
324326
*/
325327
public function removeModifier($modifier)

0 commit comments

Comments
 (0)