Fixing the array_get misspelling.

This commit is contained in:
RK
2012-09-24 10:35:07 -04:00
parent 258169ea00
commit f148f6211c

View File

@@ -544,7 +544,7 @@ abstract class Model {
*/
public function get_key()
{
return get_array($this->original, static::$key);
return array_get($this->original, static::$key);
}
/**