aboutsummaryrefslogtreecommitdiffstats
path: root/util/typo.php
blob: d0ecf0c8fb08f6055dea721f05b20a5666682e96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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';

	error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
	ini_set('display_errors', '1');
	ini_set('log_errors','0');


	$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);

	$files = glob('addon/*/*.php');
	foreach($files as $file)
		include_once($file);