Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix of typo and private property access error (#43)
Browse files Browse the repository at this point in the history
* fix of typo

* fix accessing private propery-error

Cannot access private property GuzzleHttp\Psr7\Uri
  • Loading branch information
jannejava authored and freekmurze committed Aug 27, 2018
1 parent 3eb09dc commit 03bcf77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Reporters/BaseReporter.php
Expand Up @@ -92,8 +92,8 @@ protected function crawledBadUrls(): bool
*/
protected function isExcludedStatusCode($statusCode): bool
{
$exludedStatusCodes = config('laravel-link-checker.reporters.exclude_status_codes', []);
$excludedStatusCodes = config('laravel-link-checker.reporters.exclude_status_codes', []);

return in_array($statusCode, $exludedStatusCodes);
return in_array($statusCode, $excludedStatusCodes);
}
}

0 comments on commit 03bcf77

Please sign in to comment.