Dagger
Search

phpstan

No long description provided.

Installation

dagger install github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a

Entrypoint

Return Type
Phpstan
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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

memoryLimit() 🔗

memoryLimit

Return Type
Phpstan !
Arguments
NameTypeDefault ValueDescription
limitString !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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
NameTypeDefault ValueDescription
levelString !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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
NameTypeDefault ValueDescription
noProgressBoolean !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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
NameTypeDefault ValueDescription
debugBoolean !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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
NameTypeDefault ValueDescription
quietBoolean !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a 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)
}

analyse() 🔗

phpstan

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
phpVersionString !-No description provided
sourceDirectory !-No description provided
pathToTestString !-No description provided
Example
dagger -m github.com/dagger-php/phpstan@f132537a2c4f7e5633252d62ee678db1b5bd183a call \
 analyse --php-version string --source DIR_PATH --path-to-test string
func (m *myModule) example(phpVersion string, source *Directory, pathToTest string) *Container  {
	return dag.
			Phpstan().
			Analyse(phpVersion, source, pathToTest)
}
@function
def example(php_version: str, source: dagger.Directory, path_to_test: str) -> dagger.Container:
	return (
		dag.phpstan()
		.analyse(php_version, source, path_to_test)
	)
@func()
example(phpVersion: string, source: Directory, pathToTest: string): Container {
	return dag
		.phpstan()
		.analyse(phpVersion, source, pathToTest)
}