Can I have a class within a class for organization sake?
I'm trying but it's giving me errors. If I could rather then extend classes that would be great.
meaning
Class A {
Class B{
Bunch of Functions()
Bunch of Functions()
Bunch of Functions()
}
Class C {
Bunch of Functions()
Bunch of Functions()
Bunch of Functions()
}
}
if so,
woudl it work liek so?
$myvar = new A;
$myvar = $myvar new B;
$myvar = $myvar - > Bunch of Funcitons()