Dagger
Search

examples

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/php/examples/go@268bbbb563dd2811d3dce0d193f2cb9e543bf92e

Entrypoint

Return Type
Examples
Example
dagger -m github.com/sagikazarmark/daggerverse/php/examples/go@268bbbb563dd2811d3dce0d193f2cb9e543bf92e call \
func (m *myModule) example() *Examples  {
	return dag.
			Examples()
}
@function
def example() -> dag.Examples:
	return (
		dag.examples()
	)
@func()
example(): Examples {
	return dag
		.examples()
}

Types

Examples 🔗

all() 🔗

All executes all examples.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/php/examples/go@268bbbb563dd2811d3dce0d193f2cb9e543bf92e call \
 all
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.all()
}

phpComposer() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/php/examples/go@268bbbb563dd2811d3dce0d193f2cb9e543bf92e call \
 php-composer
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			PhpComposer(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.php_composer()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.phpComposer()
}

phpExtension() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/php/examples/go@268bbbb563dd2811d3dce0d193f2cb9e543bf92e call \
 php-extension
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			PhpExtension(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.php_extension()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.phpExtension()
}