![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/orchestra/testbench-core/src/Contracts/ |
<?php namespace Orchestra\Testbench\Contracts; use ArrayAccess; /** * @phpstan-import-type TExtraConfig from \Orchestra\Testbench\Foundation\Config * @phpstan-import-type TPurgeConfig from \Orchestra\Testbench\Foundation\Config * @phpstan-import-type TWorkbenchConfig from \Orchestra\Testbench\Foundation\Config */ interface Config extends ArrayAccess { /** * Add additional service providers. * * @param array<int, class-string<\Illuminate\Support\ServiceProvider>> $providers * @return $this */ public function addProviders(array $providers); /** * Get extra attributes. * * @return array<string, mixed> * * @phpstan-return TExtraConfig */ public function getExtraAttributes(): array; /** * Get purge attributes. * * @return array<string, mixed> * * @phpstan-return TPurgeConfig */ public function getPurgeAttributes(): array; /** * Get workbench attributes. * * @return array<string, mixed> * * @phpstan-return TWorkbenchConfig */ public function getWorkbenchAttributes(): array; }