Fix classes

ofaj
jmontoyaa 9 years ago
parent 4fdc9a4a7a
commit 3926f43bec
  1. 2
      main/inc/lib/pear/PEAR.php
  2. 4
      src/Chamilo/CourseBundle/Entity/CLpItem.php
  3. 4
      src/Chamilo/CourseBundle/Entity/CLpItemView.php

@ -863,7 +863,7 @@ class PEAR_Error
* @access public
*
*/
public function __constructor(
public function __construct(
$message = 'unknown error',
$code = null,
$mode = null,

@ -198,9 +198,9 @@ class CLpItem
private $prerequisiteMaxScore;
/**
* Constructor
* CLpItem constructor.
*/
public function __constructor()
public function __construct()
{
$this->maxScore = 100;
}

@ -122,9 +122,9 @@ class CLpItemView
private $maxScore;
/**
* Constructor
* CLpItemView constructor.
*/
public function __constructor()
public function __construct()
{
$this->status = 'not attempted';
$this->coreExit = 'none';

Loading…
Cancel
Save