I am developing my own package in Laravel and I am developing a huge number of helper to use with my package so that it can be used this way:
MyPackage::myfunc1();
MyPackage::myfunc2();
MyPackage::myfunc3();
....
The problem is MyPackage class (MyPackage.php) is becoming huge and the code is becoming very long. This bring hard maintainability to the file.
Is there anyway that I can split the class into a few files for easier maintaining? Or, is there any other way to do so?
Thank you.