10 lines
148 B
PHP
10 lines
148 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class ThemeService {
|
|
public static function getCurrent() {
|
|
return $_COOKIE['theme'] ?? 'light';
|
|
}
|
|
}
|