First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
32
tests/_support/Config/MockCLIConfig.php
Normal file
32
tests/_support/Config/MockCLIConfig.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php namespace Tests\Support\Config;
|
||||
|
||||
class MockCLIConfig extends \Config\App
|
||||
{
|
||||
public $baseURL = 'http://example.com';
|
||||
|
||||
public $uriProtocol = 'REQUEST_URI';
|
||||
|
||||
public $cookiePrefix = '';
|
||||
public $cookieDomain = '';
|
||||
public $cookiePath = '/';
|
||||
public $cookieSecure = false;
|
||||
public $cookieHTTPOnly = false;
|
||||
|
||||
public $proxyIPs = '';
|
||||
|
||||
public $CSRFProtection = false;
|
||||
public $CSRFTokenName = 'csrf_test_name';
|
||||
public $CSRFCookieName = 'csrf_cookie_name';
|
||||
public $CSRFExpire = 7200;
|
||||
public $CSRFRegenerate = true;
|
||||
public $CSRFExcludeURIs = ['http://example.com'];
|
||||
|
||||
public $CSPEnabled = false;
|
||||
|
||||
public $defaultLocale = 'en';
|
||||
public $negotiateLocale = false;
|
||||
public $supportedLocales = [
|
||||
'en',
|
||||
'es',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user