9 lines
115 B
PHP
9 lines
115 B
PHP
<?php
|
|
|
|
|
|
namespace App\Model\Service;
|
|
|
|
|
|
interface CourseInterface {
|
|
public function addNewCourse(array $info);
|
|
} |