UNPKG

grunt-phplint

Version:

A Grunt 4.0 task for running phplint on your php files

12 lines (8 loc) 243 B
var PhpLintTask = require("./core/PhpLintTask"); module.exports = function(grunt) { 'use strict'; grunt.registerMultiTask("phplint", "Run PHP lint on your php files", function() { var task = new PhpLintTask(this); task.run(); }); };