From 82056cfb63c08234b7d0b2bb42b30f9b122af366 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Sat, 26 Oct 2019 19:16:04 +0200 Subject: [PATCH] Minor - flint fixes --- main/document/document.php | 1 - main/inc/lib/course.lib.php | 1 - .../advanced_subscription/src/HookAdvancedSubscription.php | 6 +----- src/CoreBundle/Entity/Listener/CourseListener.php | 1 + src/CoreBundle/Repository/ResourceRepository.php | 5 ++--- 5 files changed, 4 insertions(+), 10 deletions(-) diff --git a/main/document/document.php b/main/document/document.php index f04c25d1bd..2fd582c4f5 100755 --- a/main/document/document.php +++ b/main/document/document.php @@ -28,7 +28,6 @@ use ChamiloSession as Session; * 2) Define the directory to display * 3) Read files and directories from the directory defined in part 2 * 4) Display all of that on an HTML page - * */ require_once __DIR__.'/../inc/global.inc.php'; diff --git a/main/inc/lib/course.lib.php b/main/inc/lib/course.lib.php index fededddd78..0aeb3b5926 100755 --- a/main/inc/lib/course.lib.php +++ b/main/inc/lib/course.lib.php @@ -24,7 +24,6 @@ use ChamiloSession as Session; * but not available in standard Chamilo). * * There are probably some places left with the wrong code. - * */ class CourseManager { diff --git a/plugin/advanced_subscription/src/HookAdvancedSubscription.php b/plugin/advanced_subscription/src/HookAdvancedSubscription.php index fdef169294..7869596b67 100644 --- a/plugin/advanced_subscription/src/HookAdvancedSubscription.php +++ b/plugin/advanced_subscription/src/HookAdvancedSubscription.php @@ -15,17 +15,13 @@ use Chamilo\CoreBundle\Hook\Interfaces\HookWSRegistrationObserverInterface; * * @author Daniel Alejandro Barreto Alva */ - require_once __DIR__.'/../config.php'; /** * Class HookAdvancedSubscription extends the HookObserver to implements * specific behaviour when the AdvancedSubscription plugin is enabled. */ -class HookAdvancedSubscription extends HookObserver implements - HookAdminBlockObserverInterface, - HookWSRegistrationObserverInterface, - HookNotificationContentObserverInterface +class HookAdvancedSubscription extends HookObserver implements HookAdminBlockObserverInterface, HookWSRegistrationObserverInterface, HookNotificationContentObserverInterface { public static $plugin; diff --git a/src/CoreBundle/Entity/Listener/CourseListener.php b/src/CoreBundle/Entity/Listener/CourseListener.php index 219fd6057f..b992558e27 100644 --- a/src/CoreBundle/Entity/Listener/CourseListener.php +++ b/src/CoreBundle/Entity/Listener/CourseListener.php @@ -14,6 +14,7 @@ use Doctrine\ORM\Event\LifecycleEventArgs; /** * Class CourseListener. * Course entity listener, when a course is created/edited and when the tool chain is loaded. + * * @todo check hosting course limits */ class CourseListener diff --git a/src/CoreBundle/Repository/ResourceRepository.php b/src/CoreBundle/Repository/ResourceRepository.php index a4e7968a3a..a70e46bd12 100644 --- a/src/CoreBundle/Repository/ResourceRepository.php +++ b/src/CoreBundle/Repository/ResourceRepository.php @@ -113,8 +113,7 @@ class ResourceRepository extends EntityRepository AbstractResource $resource, User $creator, AbstractResource $parent = null - ): ResourceNode - { + ): ResourceNode { $em = $this->getEntityManager(); $resourceNode = new ResourceNode(); @@ -442,6 +441,6 @@ class ResourceRepository extends EntityRepository */ public function create() { - return new $this->className; + return new $this->className(); } }