-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/uuur86/strobj
- Loading branch information
Showing
3 changed files
with
32 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
theme: jekyll-theme-minimal | ||
title: PHP String Objects - StrObj | ||
description: StrObj is a php micro-library providing a fluent code interface for object manipulation using string parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
* @package strobj | ||
* @license GPLv2 | ||
* @author Uğur Biçer <[email protected]> | ||
* @version 2.1.6 | ||
* @version 2.1.7 | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
@@ -184,7 +184,7 @@ public function toArray(): array | |
* | ||
* @return bool | ||
*/ | ||
public function isValid(string $path): bool | ||
public function isValid(string $path = ''): bool | ||
{ | ||
return $this->validation->isValid($path); | ||
} | ||
|