write by Ali Shahidi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
@name Dracula Theme | |
@source https://draculatheme.com/contribute | |
@collector https://github.com/alishahidi | |
*/ | |
:root { | |
--background : #282a36; | |
--current-line : #44475a; | |
--foreground : #f8f8f2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace System\View\Traits; | |
use System\Config\Config; | |
trait HasViewLoader | |
{ | |
private $viewNameArray = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace System\View\Traits; | |
trait HasExtendsContent | |
{ | |
private $extendsContent; | |
private function checkExtendsContent() | |
{ |