This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/test/typo.php
Mike Macgirvin 18287a3656 show lockstate on messages, sparkle failure on profile page,
comments on typo checker
2010-09-28 22:12:27 -07:00

18 lines
384 B
PHP

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