You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?phpdeclare(strict_types = 1);
namespaceHele\Sms;
useNette\Http\Url;
class Test
{
constURL = 'https://foo.com'; // line 10publicfunctionsendMessage()
{
$url = newUrl(self::URL);
$url->getAbsoluteUrl();
}
}
lint output:
----------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------
10 | ERROR | Case of reference name URL and use statement Url do not
| | match
| | (SlevomatCodingStandard.Namespaces.UnusedUses.MismatchingCaseSensitivity)
----------------------------------------------------------------------
The text was updated successfully, but these errors were encountered:
Example:
lint output:
The text was updated successfully, but these errors were encountered: