Skip to content

Commit

Permalink
Added todo hints
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Dec 6, 2024
1 parent 8cb2312 commit 9dd5f04
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Map.php
Original file line number Diff line number Diff line change
Expand Up @@ -4590,6 +4590,7 @@ public function strBefore( string $value, bool $case = false, string $encoding =
* @param array|string $value The string or list of strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if one of the entries contains one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strContains( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down Expand Up @@ -4638,6 +4639,7 @@ public function strContains( $value, string $encoding = 'UTF-8' ) : bool
* @param array|string $value The string or list of strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if all of the entries contains at least one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strContainsAll( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down Expand Up @@ -4682,6 +4684,7 @@ public function strContainsAll( $value, string $encoding = 'UTF-8' ) : bool
* @param array|string $value The string or strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if one of the entries ends with one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strEnds( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down Expand Up @@ -4723,6 +4726,7 @@ public function strEnds( $value, string $encoding = 'UTF-8' ) : bool
* @param array|string $value The string or strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if all of the entries ends with at least one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strEndsAll( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down Expand Up @@ -4893,6 +4897,7 @@ public function strReplace( $search, $replace, bool $case = false ) : self
* @param array|string $value The string or strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if all of the entries ends with at least one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strStarts( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down Expand Up @@ -4932,6 +4937,7 @@ public function strStarts( $value, string $encoding = 'UTF-8' ) : bool
* @param array|string $value The string or strings to search for in each entry
* @param string $encoding Character encoding of the strings, e.g. "UTF-8" (default), "ASCII", "ISO-8859-1", etc.
* @return bool TRUE if one of the entries starts with one of the strings, FALSE if not
* @todo 4.0 Add $case parameter at second position
*/
public function strStartsAll( $value, string $encoding = 'UTF-8' ) : bool
{
Expand Down

0 comments on commit 9dd5f04

Please sign in to comment.