PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
cloudinary
/
cloudinary_php
/
tests
/
Helpers
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Test\Helpers; use Cloudinary\Asset\Analytics; /** * Class MockAnalytics */ class MockAnalytics extends Analytics { protected static $sdkVersion = "2.3.4"; protected static $techVersion = '8.0'; /** * Gets the SDK signature by encoding the SDK version and tech version. * * @return string */ public static function sdkAnalyticsSignature() { self::$signature = null; // reset signature for tests return parent::sdkAnalyticsSignature(); } }
[-] MockSearchApi.php
[edit]
[-] MockUploadApi.php
[edit]
[+]
..
[-] MockAnalytics.php
[edit]
[-] MockApiTrait.php
[edit]
[-] MockAdminApi.php
[edit]
[-] MockApiClient.php
[edit]
[-] Addon.php
[edit]
[-] RequestAssertionsTrait.php
[edit]