friendica/util/typo.php

81 rader
1.7 KiB
PHP
Normal vy Historik

#!/usr/bin/env php
<?php
2017-05-03 04:42:29 +02:00
2017-04-30 06:01:26 +02:00
// 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.
use Friendica\App;
use Friendica\BaseObject;
2017-05-03 04:42:29 +02:00
error_reporting(E_ERROR | E_WARNING | E_PARSE);
2017-04-30 06:01:26 +02:00
ini_set('display_errors', '1');
2017-05-03 04:42:29 +02:00
ini_set('log_errors', '0');
2017-04-30 06:01:26 +02:00
include 'boot.php';
$a = new App(dirname(__DIR__));
BaseObject::setApp($a);
2017-05-03 04:42:29 +02:00
if (x($a->config, 'php_path')) {
2017-04-30 06:01:26 +02:00
$phpath = $a->config['php_path'];
2017-05-03 04:42:29 +02:00
} else {
2017-04-30 06:01:26 +02:00
$phpath = 'php';
2017-05-03 04:42:29 +02:00
}
echo 'Directory: src' . PHP_EOL;
$Iterator = new RecursiveDirectoryIterator('src');
foreach (new RecursiveIteratorIterator($Iterator) as $file) {
if (substr($file, -4) === '.php') {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
}
}
2017-04-30 06:01:26 +02:00
echo "Directory: mod\n";
$files = glob('mod/*.php');
2017-05-03 04:42:29 +02:00
foreach ($files as $file) {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
2017-04-30 06:01:26 +02:00
}
2017-04-30 06:01:26 +02:00
echo "Directory: include\n";
$files = glob('include/*.php');
2017-05-03 04:42:29 +02:00
foreach ($files as $file) {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
2017-04-30 06:01:26 +02:00
}
2017-04-30 06:01:26 +02:00
echo "Directory: object\n";
$files = glob('object/*.php');
2017-05-03 04:42:29 +02:00
foreach ($files as $file) {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
2017-04-30 06:01:26 +02:00
}
2017-04-30 06:01:26 +02:00
echo "Directory: addon\n";
$dirs = glob('addon/*');
2017-05-03 04:42:29 +02:00
foreach ($dirs as $dir) {
2017-04-30 06:01:26 +02:00
$addon = basename($dir);
$files = glob($dir . '/' . $addon . '.php');
2017-05-03 04:42:29 +02:00
foreach ($files as $file) {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
}
2017-04-30 06:01:26 +02:00
}
2017-04-30 06:01:26 +02:00
echo "String files\n";
2017-04-30 06:01:26 +02:00
echo 'util/strings.php' . "\n";
2017-05-03 04:42:29 +02:00
passthru("$phpath -l util/strings.php", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
2017-04-30 06:01:26 +02:00
$files = glob('view/lang/*/strings.php');
2017-05-03 04:42:29 +02:00
foreach ($files as $file) {
passthru("$phpath -l $file", $ret);
2017-06-09 03:03:44 +02:00
$ret === 0 || die();
2017-04-30 06:01:26 +02:00
}