Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Validator/Test/Unit/Test/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Validator/Test/Unit/Test/Callback.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Validator\Test\Unit\Test; /** * Class with callback for testing callbacks */ class Callback { const ID = 3; /** * @return int */ public function getId() { return self::ID; } /** * Fake method for testing callbacks */ public function configureValidator() { } }