phpstan
No long description provided.
Installation
dagger install github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d
Entrypoint
Return Type
Phpstan
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
func (m *myModule) example() *Phpstan {
return dag.
Phpstan()
}
@function
def example() -> dag.Phpstan:
return (
dag.phpstan()
)
@func()
example(): Phpstan {
return dag
.phpstan()
}
Types
Phpstan 🔗
Run phpstan against your php codebase
analyse() 🔗
phpstan
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
pathToTest | String ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
analyse --source DIR_PATH --path-to-test string
func (m *myModule) example(source *Directory, pathToTest string) *Container {
return dag.
Phpstan().
Analyse(source, pathToTest)
}
@function
def example(source: dagger.Directory, path_to_test: str) -> dagger.Container:
return (
dag.phpstan()
.analyse(source, path_to_test)
)
@func()
example(source: Directory, pathToTest: string): Container {
return dag
.phpstan()
.analyse(source, pathToTest)
}
memoryLimit() 🔗
memoryLimit
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
limit | String ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
memory-limit --limit string
func (m *myModule) example(limit string) *Phpstan {
return dag.
Phpstan().
MemoryLimit(limit)
}
@function
def example(limit: str) -> dag.Phpstan:
return (
dag.phpstan()
.memory_limit(limit)
)
@func()
example(limit: string): Phpstan {
return dag
.phpstan()
.memoryLimit(limit)
}
level() 🔗
level
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
level | String ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
level --level string
func (m *myModule) example(level string) *Phpstan {
return dag.
Phpstan().
Level(level)
}
@function
def example(level: str) -> dag.Phpstan:
return (
dag.phpstan()
.level(level)
)
@func()
example(level: string): Phpstan {
return dag
.phpstan()
.level(level)
}
noProgress() 🔗
noProgress
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
noProgress | Boolean ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
no-progress --no-progress boolean
func (m *myModule) example(noProgress bool) *Phpstan {
return dag.
Phpstan().
NoProgress(noProgress)
}
@function
def example(no_progress: bool) -> dag.Phpstan:
return (
dag.phpstan()
.no_progress(no_progress)
)
@func()
example(noProgress: boolean): Phpstan {
return dag
.phpstan()
.noProgress(noProgress)
}
debug() 🔗
debug
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
debug | Boolean ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
debug --debug boolean
func (m *myModule) example(debug bool) *Phpstan {
return dag.
Phpstan().
Debug(debug)
}
@function
def example(debug: bool) -> dag.Phpstan:
return (
dag.phpstan()
.debug(debug)
)
@func()
example(debug: boolean): Phpstan {
return dag
.phpstan()
.debug(debug)
}
quiet() 🔗
quiet
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
quiet | Boolean ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
quiet --quiet boolean
func (m *myModule) example(quiet bool) *Phpstan {
return dag.
Phpstan().
Quiet(quiet)
}
@function
def example(quiet: bool) -> dag.Phpstan:
return (
dag.phpstan()
.quiet(quiet)
)
@func()
example(quiet: boolean): Phpstan {
return dag
.phpstan()
.quiet(quiet)
}
phpVersion() 🔗
memoryLimit
Return Type
Phpstan !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
phpVersion | String ! | - | No description provided |
Example
dagger -m github.com/dagger-php/phpstan@6b2ed80d6e50092f8e194b9f2f26cfa5916d6f9d call \
php-version --php-version string
func (m *myModule) example(phpVersion string) *Phpstan {
return dag.
Phpstan().
PhpVersion(phpVersion)
}
@function
def example(php_version: str) -> dag.Phpstan:
return (
dag.phpstan()
.php_version(php_version)
)
@func()
example(phpVersion: string): Phpstan {
return dag
.phpstan()
.phpVersion(phpVersion)
}