21 lines
		
	
	
		
			492 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			492 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Behat;
 | 
						|
 | 
						|
use App\Entity\Client;
 | 
						|
use App\Repository\ClientRepository;
 | 
						|
use Behat\Behat\Context\Context;
 | 
						|
use Behat\Behat\Tester\Exception\PendingException;
 | 
						|
use Behat\Gherkin\Node\TableNode;
 | 
						|
use Doctrine\ORM\EntityManagerInterface;
 | 
						|
use PHPUnit\Framework\Assert;
 | 
						|
use Symfony\Component\HttpClient\MockHttpClient;
 | 
						|
use Symfony\Component\Uid\Uuid;
 | 
						|
 | 
						|
class CrmContext implements Context
 | 
						|
{
 | 
						|
    public function __construct(
 | 
						|
        protected readonly MockHttpClient $crmClient,
 | 
						|
    ) {}
 | 
						|
}
 |