for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Minubo\Dependency\Service;
class MinuboToUtilEncodingServiceBridge implements MinuboToUtilEncodingServiceInterface
{
* @var \Spryker\Service\UtilEncoding\UtilEncodingServiceInterface
protected $utilEncodingService;
* @param \Spryker\Service\UtilEncoding\UtilEncodingServiceInterface $utilEncodingService
public function __construct($utilEncodingService)
$this->utilEncodingService = $utilEncodingService;
}
* @param mixed $value
* @param int|null $options
* @param int|null $depth
*
* @return string
public function encodeJson($value, $options = null, $depth = null): string
return $this->utilEncodingService->encodeJson($value, $options, $depth);
return $this->utilEncodi...alue, $options, $depth)
null
string