19 lines
493 B
PHP
Executable File
19 lines
493 B
PHP
Executable File
<?php
|
|
|
|
namespace Common\Files\Traits;
|
|
|
|
trait SetsAvailableSpaceAttribute
|
|
{
|
|
/**
|
|
* Large numbers are not stored in db on some servers properly without this.
|
|
*
|
|
* @param int $value
|
|
*/
|
|
public function setAvailableSpaceAttribute($value) {
|
|
if ( ! config('database.mysql.strict') && ! is_null($value)) {
|
|
$this->attributes['available_space'] = (string) $value;
|
|
} else {
|
|
$this->attributes['available_space'] = $value;
|
|
}
|
|
}
|
|
} |