-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Privacy Subsystem implementation for enrol_wallet. | ||
* Privacy Subsystem implementation for availability_wallet. | ||
* | ||
* @package availability_wallet | ||
* @copyright 2023 Mo Farouk <[email protected]> | ||
|
@@ -24,20 +24,17 @@ | |
|
||
namespace availability_wallet\privacy; | ||
|
||
use core_privacy\local\request\approved_contextlist; | ||
use core_privacy\local\request\approved_userlist; | ||
use core_privacy\local\request\userlist; | ||
use \core_privacy\local\metadata\provider as core_provider; | ||
use \core_privacy\local\request\data_provider; | ||
use core_privacy\local\metadata\collection; | ||
|
||
/** | ||
* Privacy Subsystem for enrol_wallet implementing null_provider. | ||
* Privacy Subsystem for availability_wallet implementing null_provider. | ||
* | ||
* @copyright 2023 Mo Farouk <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class provider implements | ||
\core_privacy\local\metadata\provider, | ||
\core_privacy\local\request\data_provider { | ||
class provider implements core_provider, data_provider { | ||
|
||
/** | ||
* Returns meta data about this system. | ||
|