Executes a method with the name stored in the variable of the $commandobject stored in $box.
So, suppose the class $boxhas a method called foo, this will work:
$command = "foo";
$box->$command();
and will be equivalent
$box->foo();
, , . $command, , , - ( php-).