1 <?php
2
3 /*
4 * To change this license header, choose License Headers in Project Properties.
5 * To change this template file, choose Tools | Templates
6 * and open the template in the editor.
7 */
8
9 namespace nk2580\wordsmith\Environment;
10
11 /**
12 * Description of Plugin
13 *
14 * @author Nik Kyriakidis
15 */
16 class Plugin {
17
18 public static function init($dir) {
19 Bootstrapper::init($dir);
20 return Bootstrapper::boot();
21 }
22
23 }
24