You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When no tag is provided and the size of services greater than one, Bindify will auto-generate one based on the implementation class name appended with '_tag'
86
+
87
+
### Retrieving Bindings
88
+
89
+
Resolve your bindings as usual through container:
90
+
91
+
```php
92
+
// Single binding
93
+
$service = app(ServiceContract::class);
94
+
95
+
// Tagged bindings
96
+
$services = app()->tagged('primary');
97
+
```
98
+
70
99
## License
71
100
72
101
This package is open-sourced software licensed under the [MIT license](LICENSE).
0 commit comments