whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
laravel
/
octane
/
src
/
Tables
/
Concerns
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/laravel/octane/src/Tables/Concerns/EnsuresColumnSizes.php
<?php namespace Laravel\Octane\Tables\Concerns; use Illuminate\Support\Arr; use Laravel\Octane\Exceptions\ValueTooLargeForColumnException; use Swoole\Table; trait EnsuresColumnSizes { /** * Ensures the given column value is within the given size. * * @return void */ protected function ensureColumnsSize() { return function ($value, $column) { if (! Arr::has($this->columns, $column)) { return; } [$type, $size] = $this->columns[$column]; if ($type == Table::TYPE_STRING && strlen($value) > $size) { throw new ValueTooLargeForColumnException(sprintf( 'Value [%s...] is too large for [%s] column.', substr($value, 0, 20), $column, )); } }; } }
Copyright ©2021 || Defacer Indonesia