Showing 7 of 13 total issues
File ImagesTest.php
has 342 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
namespace Api;
use EscolaLms\Images\Events\FileStored;
Method testAdministrableConfigApi
has 75 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function testAdministrableConfigApi(): void
{
$configKey = SettingsServiceProvider::CONFIG_KEY;
$user = $this->makeAdmin();
Method test_image_post_results
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function test_image_post_results(): void
{
$filename = 'test.jpg';
$filepath = realpath(__DIR__ . '/' . $filename);
Method test_invalid_image_post_results
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function test_invalid_image_post_results(): void
{
Event::fake([FileStored::class]);
$disk = Storage::disk('local');
Method render
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function render(string $path, $params): array
{
$hash = sha1($path . json_encode($params));
$ext = pathinfo($path)['extension'] ?? null;
Function render
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function render(string $path, $params): array
{
$hash = sha1($path . json_encode($params));
$ext = pathinfo($path)['extension'] ?? null;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function determineWidthAndHeight
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
private function determineWidthAndHeight(InterventionImage $img, array $params): array
{
if (isset($params['size'])) {
$size_definitions = config('images.public.size_definitions');
if (is_array($size_definitions) && array_key_exists($params['size'], $size_definitions)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"