Browse Source

GraphQL: Remove files for user webservices #2644

Angel Fernando Quiroz Campos 6 years ago
parent
commit
c707bf8b48
3 changed files with 0 additions and 31 deletions
  1. 0 1
      main/webservices/soap.php
  2. 0 16
      main/webservices/soap_user.php
  3. 0 14
      main/webservices/webservice_user.php

+ 0 - 1
main/webservices/soap.php

@@ -122,7 +122,6 @@ $s->register(
     ['return' => 'xsd:string']
 );
 
-require_once __DIR__.'/soap_user.php';
 require_once __DIR__.'/soap_course.php';
 require_once __DIR__.'/soap_session.php';
 require_once __DIR__.'/soap_report.php';

+ 0 - 16
main/webservices/soap_user.php

@@ -1,16 +0,0 @@
-<?php
-/* For licensing terms, see /license.txt */
-/**
- * Configures the WSUser SOAP service.
- *
- * @package chamilo.webservices
- */
-require_once __DIR__.'/webservice_user.php';
-require_once __DIR__.'/soap.php';
-
-/**
- * Configures the WSUser SOAP service.
- *
- * @package chamilo.webservices
- */
-$s = WSSoapServer::singleton();

+ 0 - 14
main/webservices/webservice_user.php

@@ -1,14 +0,0 @@
-<?php
-/* For licensing terms, see /license.txt */
-/**
- * @package chamilo.webservices
- */
-require_once __DIR__.'/../inc/global.inc.php';
-require_once __DIR__.'/webservice.php';
-
-/**
- * Web services available for the User module. This class extends the WS class.
- */
-class WSUser extends WS
-{
-}