for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ACFComposer\Tests;
use PHPUnit\Framework;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Brain\Monkey;
class TestCase extends Framework\TestCase
{
use MockeryPHPUnitIntegration;
protected function setUp() : void
parent::setUp();
Monkey\setUp();
setUp
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
/** @scrutinizer ignore-call */
}
protected function tearDown() : void
Monkey\tearDown();
tearDown
parent::tearDown();