for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package CleverStyle CMS
* @author Nazar Mokrynskyi <[email protected]>
* @copyright Copyright (c) 2016, Nazar Mokrynskyi
* @license MIT License, see license.txt
*/
namespace cs\Request;
trait Cookie {
* Cookie array, similar to `$_COOKIE`
*
* @var array
public $cookie;
* @param array $cookie Typically `$_COOKIE`
function init_cookie ($cookie = []) {
$this->cookie = $cookie;
}