PHP code example of anripuankare / atol-client

1. Go to this page and download the library: Download anripuankare/atol-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

anripuankare / atol-client example snippets


	
	
	declare(strict_types=1);
	
	namespace Lamoda\AtolClient\Tests\Helper;
	
	use GuzzleHttp\ClientInterface;
	use JMS\Serializer\Serializer;
	use Lamoda\AtolClient\Converter\ObjectConverter;
	use Lamoda\AtolClient\V3\AtolApi as AtolApiV3;
	use Lamoda\AtolClient\V4\AtolApi as AtolApiV4;
	use Symfony\Component\Validator\Validation;
	use Symfony\Component\Validator\Validator\ValidatorInterface;
	
	final class AtolApiFactory
	{
    	/**
 		 * @deprecated  	
 		 */
		public static function createV3(
			ClientInterface $client,
			array $options,
			string $baseUrl,
			string $groupCode
		): AtolApiV3 {
			$objectConvertor = new ObjectConverter(
				self::createSerializer(),
				self::createValidator()
			);
	
			return new AtolApiV3(
				$objectConvertor,
				$client,
				$options,
				$baseUrl,
				$groupCode
			);
		}
	
		public static function createV4(
			ClientInterface $client,
			array $options,
			string $baseUrl
		): AtolApiV4 {
			$objectConvertor = new ObjectConverter(
				self::createSerializer(),
				self::createValidator()
			);
	
			return new AtolApiV4(
				$objectConvertor,
				$client,
				$options,
				$baseUrl
			);
		}
	
		private static function createSerializer(): Serializer
		{
			return SerializerBuilder::create()->build();
		}
	
		private static function createValidator(): ValidatorInterface
		{
			return Validation::createValidatorBuilder()
				->enableAnnotationMapping()
				->getValidator();
		}
	}