| 1 | <?php namespace Gears\String\Methods; |
||
| 16 | trait Has |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Does the string have at least one lower case character? |
||
| 20 | * |
||
| 21 | * @return bool Whether or not the string contains a lower case character. |
||
| 22 | */ |
||
| 23 | public function hasLowerCase() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Does the string have at least one upper case character? |
||
| 30 | * |
||
| 31 | * @return bool Whether or not the string contains an upper case character. |
||
| 32 | */ |
||
| 33 | public function hasUpperCase() |
||
| 37 | } |
||
| 38 |