phpcs
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/phpcs@8f0adf2c24e0092a461ba184667c2c97cc9bc0df
Entrypoint
Return Type
Phpcs
Example
dagger -m github.com/tsirysndr/daggerverse/phpcs@8f0adf2c24e0092a461ba184667c2c97cc9bc0df call \
func (m *myModule) example() *Phpcs {
return dag.
Phpcs()
}
@function
def example() -> dag.Phpcs:
return (
dag.phpcs()
)
@func()
example(): Phpcs {
return dag
.phpcs()
}
Types
Phpcs 🔗
check() 🔗
Run phpcs 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/phpcs@8f0adf2c24e0092a461ba184667c2c97cc9bc0df call \
check
func (m *myModule) example(src ) {
return dag.
Phpcs().
Check(src)
}
@function
def example(src: ) -> :
return (
dag.phpcs()
.check(src)
)
@func()
example(src: ): {
return dag
.phpcs()
.check(src)
}