Lines Matching refs:to

26 This library provides a thin layer between PHP VMs and libraries to ensure
33 With [Composer](https://getcomposer.org/), to include this library into
34 your dependencies, you need to
52 Then, to run all the test suites:
84 It avoids to write algorithms that might break in the future or for your users
91 `Hoa\Consistency\Consistency::isIdentifier` method to check an identifier is
101 entity, we will be able to access it with the `Foo\Bar\Bar` name or `Foo\Bar`.
102 This is very useful if your architecture evolves but you want to keep the
105 versions, you realise other exceptions need to be introduced, so you need an
115 `Hoa\Consistency\Consistency` is a good example. This is more convenient to
121 The `Throwable` interface has been introduced to represent a whole new exception
122 architecture in PHP. Thus, to be compatible with incoming PHP versions, you
123 might want to use this interface in some cases. Hopefully, the `Throwable`
139 * `addNamespace` is used to map a namespace prefix to a directory,
140 * `register` is used to register the autoloader.
142 The API also provides the `load` method to force the load of an entity,
143 `unregister` to unregister the autoloader, `getRegisteredAutoloaders` to get
146 For instance, to map the `Foo\Bar` namespace to the `Source/` directory:
158 Xcallables are “extended callables”. It is a unified API to invoke callables of
193 This is also possible to get a unique hash of the callable:
204 Finally, this is possible to get a reflection instance of the current callable
225 according to the type of the arguments given to the callable, the
237 xcallable. In this particular case, the method to call is unknown, we only have
239 method will be deduced according to the data contained in the event bucket fired
246 contains detailed information about how to use this library and how it works.
260 There are mainly two ways to get help:
268 Do you want to contribute? Thanks! A detailed [contributor
270 everything you need to know.