1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

Revert string changes

This commit is contained in:
Brown 2020-07-26 19:55:49 -04:00
parent 74eea18563
commit 1b81ce9921
2 changed files with 8 additions and 8 deletions

View File

@ -15,4 +15,12 @@ class TNonEmptyLowercaseString extends TNonEmptyString
{
return 'non-empty-lowercase-string';
}
/**
* @return false
*/
public function canBeFullyExpressedInPhp()
{
return false;
}
}

View File

@ -13,12 +13,4 @@ class TNonEmptyString extends TString
{
return 'non-empty-string';
}
/**
* @return false
*/
public function canBeFullyExpressedInPhp()
{
return false;
}
}