PHP Mapping for Modules

By default a Slice modules map to PHP namespaces with the same name as the Slice module. Consider the following Slice definition:

Slice
module M
{
    module N
    {
        enum Color { red, green, blue }
    }
}

The Slice identifier Color maps to \M\N\Color.

See Also