Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php declare(strict_types=1); namespace Intervention\Image\Tests\Unit\Colors\Hsv\Channe..

Decoded Output download

<?php

declare(strict_types=1);

namespace Intervention\Image\Tests\Unit\Colors\Hsv\Channels;

use Intervention\Image\Colors\Hsv\Channels\Saturation;
use Intervention\Image\Tests\BaseTestCase;

final class SaturationTest extends BaseTestCase
{
    public function testMinMax(): void
    {
        $saturation = new Saturation(0);
        $this->assertEquals(0, $saturation->min());
        $this->assertEquals(100, $saturation->max());
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Intervention\Image\Tests\Unit\Colors\Hsv\Channels;

use Intervention\Image\Colors\Hsv\Channels\Saturation;
use Intervention\Image\Tests\BaseTestCase;

final class SaturationTest extends BaseTestCase
{
    public function testMinMax(): void
    {
        $saturation = new Saturation(0);
        $this->assertEquals(0, $saturation->min());
        $this->assertEquals(100, $saturation->max());
    }
}

Function Calls

None

Variables

None

Stats

MD5 f3b28458c3b7d2183bff4efce3a436ea
Eval Count 0
Decode Time 114 ms