summaryrefslogtreecommitdiff
path: root/src/Model/Model.php
blob: f59ab0ef7d52b0ee9d6ab436dbea1b8630abf531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace App\Model;

/**
 * Base model class
 */
class Model
{
    protected static $inputFile = APP_ROOT . 'data/input.txt';

    /**
     * Init
     *
     * @author Phil Burton <phil@pgburton.com>
     */
    public function __construct()
    {
        // initalise Model
    }
}