summaryrefslogtreecommitdiff
path: root/tools/php-sqllint/src/stub-phar.php
blob: 5c8629e23e2b44f2afe9ea2e7f46c1f0cd7af3d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env php
<?php
/**
 * Phar stub file for php-sqllint. Handles startup of the .phar file.
 *
 * PHP version 5
 *
 * @category  Tools
 * @package   PHP-SQLlint
 * @author    Christian Weiske <cweiske@cweiske.de>
 * @copyright 2015 Christian Weiske
 * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
 * @link      http://cweiske.de/php-sqllint.htm
 */
Phar::mapPhar('php-sqllint.phar');
require 'phar://php-sqllint.phar/bin/phar-php-sqllint.php';
__HALT_COMPILER();
?>