Skip to content

Commit

Permalink
Add missing 'static' keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Apr 25, 2015
1 parent d33c5e1 commit 80bbb52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validation/Validation.php
Expand Up @@ -53,7 +53,7 @@ class Validation
* @deprecated 3.0.2 Use Validation::notBlank() instead.
* @see Validation::notBlank()
*/
public function notEmpty($check)
public static function notEmpty($check)
{
trigger_error('Validation::notEmpty() is deprecated. Use Validation::notBlank() instead.', E_USER_DEPRECATED);
return static::notBlank($check);
Expand Down

0 comments on commit 80bbb52

Please sign in to comment.