php-sdk-dev
No long description provided.
Installation
dagger install github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932cEntrypoint
Return Type
PhpSdkDev !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| container | Container | null | No description provided | 
Example
dagger -m github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932c call \
func (m *MyModule) Example() *dagger.PhpSdkDev  {
	return dag.
			PhpSdkDev()
}@function
def example() -> dagger.PhpSdkDev:
	return (
		dag.php_sdk_dev()
	)@func()
example(): PhpSdkDev {
	return dag
		.phpSdkDev()
}Types
PhpSdkDev 🔗
The PHP SDK's development module.
test() 🔗
Run tests from source directory
Return Type
Container !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| source | Directory ! | - | Run tests from the given source directory | 
| group | String | null | Only run tests in the given group | 
Example
dagger -m github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932c call \
 test --source DIR_PATHfunc (m *MyModule) Example(source *dagger.Directory) *dagger.Container  {
	return dag.
			PhpSdkDev().
			Test(source)
}@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.php_sdk_dev()
		.test(source)
	)@func()
example(source: Directory): Container {
	return dag
		.phpSdkDev()
		.test(source)
}lint() 🔗
Run linter in source directory
Return Type
Container !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| source | Directory ! | - | No description provided | 
Example
dagger -m github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932c call \
 lint --source DIR_PATHfunc (m *MyModule) Example(source *dagger.Directory) *dagger.Container  {
	return dag.
			PhpSdkDev().
			Lint(source)
}@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.php_sdk_dev()
		.lint(source)
	)@func()
example(source: Directory): Container {
	return dag
		.phpSdkDev()
		.lint(source)
}format() 🔗
Return diff from formatting source directory
Return Type
Directory !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| source | Directory ! | - | No description provided | 
Example
dagger -m github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932c call \
 format --source DIR_PATHfunc (m *MyModule) Example(source *dagger.Directory) *dagger.Directory  {
	return dag.
			PhpSdkDev().
			Format(source)
}@function
def example(source: dagger.Directory) -> dagger.Directory:
	return (
		dag.php_sdk_dev()
		.format(source)
	)@func()
example(source: Directory): Directory {
	return dag
		.phpSdkDev()
		.format(source)
}formatStdout() 🔗
Return stdout from formatting source directory
Return Type
String !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| source | Directory ! | - | No description provided | 
Example
dagger -m github.com/shykes/dagger/sdk/php/dev@c3d2e98fe40ecc24e52d5a268e383b61b9a1932c call \
 format-stdout --source DIR_PATHfunc (m *MyModule) Example(ctx context.Context, source *dagger.Directory) string  {
	return dag.
			PhpSdkDev().
			FormatStdout(ctx, source)
}@function
async def example(source: dagger.Directory) -> str:
	return await (
		dag.php_sdk_dev()
		.format_stdout(source)
	)@func()
async example(source: Directory): Promise<string> {
	return dag
		.phpSdkDev()
		.formatStdout(source)
}