php-cs-fixer
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/php-cs-fixer@0f6253cfc89995fd79a7123659e85ac7269a349a
Entrypoint
Return Type
PhpCsFixer
Example
dagger -m github.com/tsirysndr/daggerverse/php-cs-fixer@0f6253cfc89995fd79a7123659e85ac7269a349a call \
func (m *myModule) example() *PhpCsFixer {
return dag.
PhpCsFixer()
}
@function
def example() -> dag.PhpCsFixer:
return (
dag.php_cs_fixer()
)
@func()
example(): PhpCsFixer {
return dag
.phpCsFixer()
}
Types
PhpCsFixer 🔗
fix() 🔗
Run php-cs-fixer on PHP files.
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory ! | - | No description provided |
path | StringKind | - | No description provided |
tag | StringKind | - | No description provided |
Example
dagger -m github.com/tsirysndr/daggerverse/php-cs-fixer@0f6253cfc89995fd79a7123659e85ac7269a349a call \
fix
func (m *myModule) example(src ) {
return dag.
PhpCsFixer().
Fix(src)
}
@function
def example(src: ) -> :
return (
dag.php_cs_fixer()
.fix(src)
)
@func()
example(src: ): {
return dag
.phpCsFixer()
.fix(src)
}