Skip to content

Div PHp Ways 2.2.0

Compare
Choose a tag to compare
@rafageist rafageist released this 08 Jul 22:47
· 17 commits to master since this release

Support namespaces

Now divengine\ways detect namespace instruction. You can do this:

<?php

namespace MyApp;

#listen = /
class MyController {
	static function Run() {
	    echo "Hello universe";
	}
}