for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Hello\Utility;
/**
* Class ThemeHelper
* @package ByTIC\Hello\Utility
*/
class ThemeHelper
{
protected static $theme = 'bootstrap3';
* @param null $new
$new
null
* @return string|void
public static function theme($new = null)
if ($new !== null) {
$new !== null
false
return static::setTheme($new);
}
return static::$theme;
* @param string $new
protected static function setTheme($new)
static::$theme = $new;