Parcourir la source

Update Criterion.php

Gabriel Santiago Plaza il y a 2 ans
Parent
révision
5e4a4a9c25
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      app/models/Criterion.php

+ 2
- 2
app/models/Criterion.php Voir le fichier

@@ -10,7 +10,7 @@ class Criterion extends Eloquent
10 10
 	//     protected $table = 'new_criteria';
11 11
 	protected $table = 'criteria';
12 12
 
13
-	public function outcomes($criterion_id)
13
+	public static function outcomes($criterion_id)
14 14
 	{
15 15
 		//	    return $this->belongs('Objective')->belongs('Outcome');
16 16
 		//	    TODO: Changes here
@@ -126,4 +126,4 @@ class Criterion extends Eloquent
126 126
 		}
127 127
 		return $students_achieved;
128 128
 	}
129
-}
129
+}