kulasinghet / MedEx

Class method doesn't comply with PSR standards PHP-C1001
Style
Major
2 occurrences in this check
Class method ViewAcceptedOrders() doesn't comply with the PSR standard
14class SupplierOrdersController extends Controller
15{
16
17    public function ViewAcceptedOrders()18    {
19        $order = new PharmacyOrderModel;
20        $med = new MedicineModel;
Class method Orders() doesn't comply with the PSR standard
103        }
104    }
105
106    public function Orders(Request $request)107    {
108        if ($_SESSION['userType'] == 'supplier') {
109