Skip to content

Commit 241141a

Browse files
committed
CS fixes.
1 parent 3dc950d commit 241141a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Pdp/Exception/SeriouslyMalformedUrlException.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
class SeriouslyMalformedUrlException extends \InvalidArgumentException implements PdpException
2222
{
2323
/**
24-
* Public constructor
24+
* Public constructor.
2525
*
26-
* @param string $malformedUrl URL that caused pdp_parse_url() to return false
27-
* @param int $code The Exception code
28-
* @param \Exception $previous The previous exception used for the exception chaining
26+
* @param string $malformedUrl URL that caused pdp_parse_url() to return false
27+
* @param int $code The Exception code
28+
* @param \Exception $previous The previous exception used for the exception chaining
2929
*/
30-
public function __construct($malformedUrl = "", $code = 0, $previous = null)
30+
public function __construct($malformedUrl = '', $code = 0, $previous = null)
3131
{
3232
$message = sprintf('"%s" is one seriously malformed url.', $malformedUrl);
3333
parent::__construct($message, $code, $previous);

0 commit comments

Comments
 (0)