PHP code example of conia / wire
1. Go to this page and download the library: Download conia/wire library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
conia / wire example snippets
use Conia\Wire\Wire;
class Value
{
public function get(): string
{
return 'Autowired Value';
}
}
class Model
{
public function __construct(protected Value $value) {}
public function value(): string
{
return $this->value->get();
}
}
$creator = Wire::creator();
$model = $creator->create(Model::class);
assert($model instanceof Model);
assert($model->value() === 'Autowired Value');