mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Fix the documented return types in DashboardModel
This commit is contained in:
parent
9ccb7219c0
commit
472a830999
1 changed files with 4 additions and 4 deletions
|
@ -158,7 +158,7 @@ class DashboardModel extends Model
|
||||||
/**
|
/**
|
||||||
* Return the upload path for a given type
|
* Return the upload path for a given type
|
||||||
*
|
*
|
||||||
* @return boolean
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getUploadsPath($type)
|
public function getUploadsPath($type)
|
||||||
{
|
{
|
||||||
|
@ -172,7 +172,7 @@ class DashboardModel extends Model
|
||||||
/**
|
/**
|
||||||
* Save an image
|
* Save an image
|
||||||
*
|
*
|
||||||
* @return boolean
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function saveImage($name, $file)
|
public function saveImage($name, $file)
|
||||||
{
|
{
|
||||||
|
@ -331,7 +331,7 @@ class DashboardModel extends Model
|
||||||
/**
|
/**
|
||||||
* Save a file
|
* Save a file
|
||||||
*
|
*
|
||||||
* @return boolean
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function saveFile($name, $file)
|
public function saveFile($name, $file)
|
||||||
{
|
{
|
||||||
|
@ -451,7 +451,7 @@ class DashboardModel extends Model
|
||||||
/**
|
/**
|
||||||
* Get the file extension for an image
|
* Get the file extension for an image
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public static function getColumn($name)
|
public static function getColumn($name)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue