whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
laravel
/
octane
/
src
/
Tables
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/laravel/octane/src/Tables/TableFactory.php
<?php namespace Laravel\Octane\Tables; class TableFactory { /** * Creates a new Swoole Table with the given size. * * @return \Swoole\Table */ public static function make($size) { static::ensureDependenciesAreLoaded(); return extension_loaded('openswoole') ? new OpenSwooleTable($size, 1) : new SwooleTable($size, 1); } /** * Because those tables may be required without composer * we ensure the table's dependencies are loaded. */ protected static function ensureDependenciesAreLoaded() { require_once __DIR__.'/Concerns/EnsuresColumnSizes.php'; extension_loaded('openswoole') ? require_once __DIR__.'/OpenSwooleTable.php' : require_once __DIR__.'/SwooleTable.php'; } }
Copyright ©2021 || Defacer Indonesia