changeweb/Unifiedtransform

View on GitHub
app/Interfaces/RoutineInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Interfaces;

interface RoutineInterface {
    public function saveRoutine($request);

    public function getAll($class_id, $section_id, $session_id);
}