for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace IntegerNet\SessionUnblocker\Test\Util;
use IntegerNet\SessionUnblocker\MethodLog;
use Magento\Customer\Controller\Section\Load;
class SectionLoadActionSpy extends Load
{
public function execute()
MethodLog::instance()->logControllerAction(parent::class, __FUNCTION__);
return parent::execute();
}