Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theseer/phplint
Simple Wrapper around the php linting functionality for use within code
https://github.com/theseer/phplint
Last synced: 3 months ago
JSON representation
Simple Wrapper around the php linting functionality for use within code
- Host: GitHub
- URL: https://github.com/theseer/phplint
- Owner: theseer
- Created: 2010-02-16T18:57:27.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-02-21T23:13:12.000Z (almost 15 years ago)
- Last Synced: 2024-10-03T10:49:31.111Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 123 KB
- Stars: 10
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.markdown
Awesome Lists containing this project
README
PHPLint Wrapper Library
=======================This library provides a simple means to run a lint (aka syntactical) check on php code
from within a php application:Usage with file
---------------$linter = new TheSeer\Tools\PHPLint();
$x = $linter->lintFile(__FILE__);if (!$x) {
var_dump($x, $linter->getError());lintString('getError());