Voting

: min(two, four)?
(Example: nine)

The Note You're Voting On

Dmitry Snytkine
13 years ago
Just a note: namespace (even nested or sub-namespace) cannot be just a number, it must start with a letter.
For example, lets say you want to use namespace for versioning of your packages or versioning of your API:

namespace Mynamespace\1; // Illegal
Instead use this:
namespace Mynamespace\v1; // OK

<< Back to user notes page

To Top