Skip to content

Commit a06f1f1

Browse files
committed
added space after boolean cast as requested by paulbalandan
1 parent 0570064 commit a06f1f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Router/Router.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ public function setDirectory(string $dir = null, bool $append = false, bool $val
692692
*/
693693
private function isValidSegment(string $segment): bool
694694
{
695-
return (bool)preg_match('/^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$/', $segment);
695+
return (bool) preg_match('/^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$/', $segment);
696696
}
697697

698698
//--------------------------------------------------------------------

0 commit comments

Comments
 (0)