aboutsummaryrefslogtreecommitdiff
path: root/includes/core/Metadata.php
blob: ce2dc2ddfb4e50b3aa70fe80aef9af1b38ec41f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace WebCore\GUI;

class Metadata {
    public static function title($title = null): string {
        if (isset($title)) {
            return "$title | Minteck's Website";
        } else {
            return "Minteck's Website";
        }
    }
}