mirror of
https://github.com/Intervention/image.git
synced 2025-09-01 18:02:45 +02:00
Fix: Case-insensitive class names
This commit is contained in:
@@ -14,7 +14,7 @@ class AbstractDecoderTest extends PHPUnit_Framework_TestCase
|
||||
$source = $this->getTestDecoder(new \Imagick);
|
||||
$this->assertTrue($source->isImagick());
|
||||
|
||||
$source = $this->getTestDecoder(new StdClass);
|
||||
$source = $this->getTestDecoder(new stdClass);
|
||||
$this->assertFalse($source->isImagick());
|
||||
|
||||
$source = $this->getTestDecoder(null);
|
||||
@@ -45,7 +45,7 @@ class AbstractDecoderTest extends PHPUnit_Framework_TestCase
|
||||
$source = $this->getTestDecoder(array());
|
||||
$this->assertFalse($source->isFilepath());
|
||||
|
||||
$source = $this->getTestDecoder(new StdClass);
|
||||
$source = $this->getTestDecoder(new stdClass);
|
||||
$this->assertFalse($source->isFilepath());
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ class AbstractDecoderTest extends PHPUnit_Framework_TestCase
|
||||
$source = $this->getTestDecoder(array(1,2,3));
|
||||
$this->assertFalse($source->isBinary());
|
||||
|
||||
$source = $this->getTestDecoder(new StdClass);
|
||||
$source = $this->getTestDecoder(new stdClass);
|
||||
$this->assertFalse($source->isBinary());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user