*/ namespace oat\taoClientDiagnostic\model\schoolName; use oat\oatbox\service\ConfigurableService; class SchoolNameProvider extends ConfigurableService implements SchoolNameService { /** * Gets a school name from an ID and a PIN * @param string $id * @param string $pin * @return string * @throws \common_exception_NoImplementation */ public function getSchoolName($id, $pin) { throw new \common_exception_NoImplementation('You must implement a data provider to get the school name'); } }