<?php
class MyClass {
...
}
class OtherClass {
...
}
?>
Any class that has the same name as it's file name will be auto loaded by Silverstripe.
OtherClass will be loaded too because it is in a file which is being read.
MyPage.php
<?php
class MyPage_Controller e...