1

Before starting on a current project I was wondering if there is a terminology for what I am planning on doing? Basically what I want to do is map out every object in layers such as all the controllers and what they'll be called, the methods that will exist under the controllers and their purpose; Including, the models that the methods will be interacting with and the views that will be displayed based on certain actions. This way I've created a detailed to-do list and can catch any duplicates and make them as one call. I've heard of something called doctrine but I'm not sure if it will be what im looking for since i dont know how to use it but have heard of it having to do with documentation.

asked May 18, 2013 at 22:23

1 Answer 1

1

There are two sides to your question.

The process of writing down which classes there are and which methods they likely will have and how they will interact is called design.

The process of deciding in which order to make it all is called planning.

With both the design and planning, you can do as much or as little of it as you like, but I would strongly advise not to set the results of either in stone. As you work on the first portions of your code, you will invariably find smaller or larger gaps in either the design or the planning and you should be prepared to adapt both as you go along.

answered May 19, 2013 at 8:37

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.