Completed
Push — master ( 960c9f...87e7a5 )
by Haralan
02:26
created
classes/Kohana/Jam.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 
380 380
 	/**
381 381
 	 * Make an object of class Jam_Query_Builder_Insert
382
-	 * @param  string|Jam_Model $model
382
+	 * @param  Kohana_Jam_Model $model
383 383
 	 * @return Jam_Query_Builder_Insert
384 384
 	 */
385 385
 	public static function insert($model, array $columns = array())
@@ -416,6 +416,10 @@  discard block
 block discarded – undo
416 416
 		return new $class($model);
417 417
 	}
418 418
 
419
+	/**
420
+	 * @param string $method
421
+	 * @param string $model
422
+	 */
419 423
 	protected static function find_or($method, $model, array $values)
420 424
 	{
421 425
 		$collection = Jam::all($model);
@@ -517,6 +521,9 @@  discard block
 block discarded – undo
517 521
 		return Jam_Validator_Attributes::factory($permit)->data($data)->clean();
518 522
 	}
519 523
 
524
+	/**
525
+	 * @param string $class
526
+	 */
520 527
 	public static function form($model, $class = NULL)
521 528
 	{
522 529
 		if ($class === NULL)
Please login to merge, or discard this patch.