blob: e3141a46e2f7715084ee3f313dda2605eb8c883d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
// Tired of chasing typos and finding them after a commit.
// Run this from cmdline in basedir and quickly see if we've
// got any parse errors in our application files.
include 'boot.php';
$a = new App();
$files = glob('mod/*.php');
foreach($files as $file)
include_once($file);
$files = glob('include/*.php');
foreach($files as $file)
include_once($file);
|