-
-
Couldn't load subscription status.
- Fork 191
Closed
Labels
Description
Example:
<?php declare(strict_types = 1);
namespace Hele\Sms;
use Nette\Http\Url;
class Test
{
const URL = 'https://foo.com'; // line 10
public function sendMessage()
{
$url = new Url(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)
----------------------------------------------------------------------