You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gulp.task('style:fix','Auto fix the php code styling using php code beautifier. Requires a phpcs.xml configuration file.',['composer:install'],function(){
16
+
gulp.task('style:fix','Auto fix the php code styling using php code beautifier. Requires a phpcs.xml configuration file.',function(){
17
17
if(!fileExists('phpcs.xml')){
18
18
gutil.log(gutil.colors.red('Mandatory file \'phpcs.xml\' does not exists.'));
19
19
return;
@@ -27,7 +27,7 @@ gulp.task('style:fix', 'Auto fix the php code styling using php code beautifier.
27
27
.on('error',gutil.log);
28
28
});
29
29
30
-
gulp.task('style:codestyle','Check the code style using php code sniffer. Requires a phpcs.xml configuration file.',['composer:install'],function(){
30
+
gulp.task('style:codestyle','Check the code style using php code sniffer. Requires a phpcs.xml configuration file.',function(){
31
31
if(!fileExists('phpcs.xml')){
32
32
gutil.log(gutil.colors.red('Mandatory file \'phpcs.xml\' does not exists.'));
33
33
return;
@@ -71,4 +71,4 @@ gulp.task('style:syntax', 'Check the php syntax using php lint. Default scr/, te
71
71
72
72
gulp.task('checkstyle','Check to code on styling and syntax.',['style:codestyle','style:syntax']);
gulp.task('tests','Run the selected unit tests with phpunit. Requires a phpunit.xml.dist configuration file.',['clear:coverage','composer:install'],function(){
17
+
gulp.task('tests','Run the selected unit tests with phpunit. Requires a phpunit.xml.dist configuration file.',['clear:coverage'],function(){
0 commit comments