Skip to content

Commit b8e946d

Browse files
authored
Merge pull request #426 from thephpleague/fix-deprecations
Fix deprecations
2 parents 108f79f + a724e5a commit b8e946d

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

phpunit.xml.dist

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit colors="true" bootstrap="vendor/autoload.php">
3+
<php>
4+
<ini name="error_reporting" value="32767"/>
5+
</php>
36
<testsuites>
47
<testsuite name="all">
58
<directory suffix="Test.php">tests/</directory>

tests/Api/ApiTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ class ApiTest extends TestCase
1010
{
1111
private $output;
1212

13+
private $api;
14+
1315
public function setUp(): void
1416
{
1517
$this->api = new Api(Mockery::mock('Intervention\Image\ImageManager'), []);

tests/Manipulators/CropTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ class CropTest extends TestCase
99
{
1010
private $manipulator;
1111

12+
private $image;
13+
1214
public function setUp(): void
1315
{
1416
$this->manipulator = new Crop();

0 commit comments

Comments
 (0)