php-sdk-dev
No long description provided.
Installation
dagger install github.com/shykes/dagger/sdk/php/dev@e237a2ccb7abdaa2ec2720fb63ebcee7fb571b10
Entrypoint
Return Type
PhpSdkDev !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
container | Container | null | No description provided |
Example
func (m *myModule) 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
func (m *myModule) 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
func (m *myModule) 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
func (m *myModule) 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
func (m *myModule) example(ctx context.Context, source *Directory) string {
return dag.
PhpSdkDev().
FormatStdout(ctx, source)
}