Book Image

PhpStorm Cookbook

By : Mukund Chaudhary
Book Image

PhpStorm Cookbook

By: Mukund Chaudhary

Overview of this book

Table of Contents (16 chapters)
PhpStorm Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Catching Phing build file syntax problems


Now that you have worked hard to connect PhpStorm and Phing, you must know what drives Phing. What is it that allows you to do wonders with Phing? What is it that makes your life easier and makes adherence to the principles of software engineering easier? The name you had to think of was build file. Yes, it is the build file that controls the behavior of Phing. Yes, using build file, you can do wonders with Phing. Yes, using build file, you can perform tasks in a clean way—thus adhering to the principles of software engineering.

Getting ready

It's perfectly okay that you can write a new build file to perform tasks with Phing. But this question looms large—How do you check whether the build file you wrote is syntactically OK. Come on, if you say that you do not create mistakes while writing, you must be JARVIS and no human being. To err is human, to check and remove that error is PhpStorm-ine.

How to do it…

Before starting off writing build files, you...