/home/techb158/immovalet.com/vendor/botble/platform/table/src
Edit: /home/techb158/immovalet.com/vendor/botble/platform/table/src/TableBuilder.php (908B)
container = $container;
}
/**
* @param string $tableClass
* @return TableAbstract
* @throws BindingResolutionException
*/
public function create($tableClass)
{
if (!class_exists($tableClass)) {
throw new InvalidArgumentException(
'Table class with name ' . $tableClass . ' does not exist.'
);
}
return $this->container->make($tableClass);
}
}