Closed mimmi20 closed 8 years ago
Thanks for the PR and sorry for the delay ...were on vacation.
Can't you use the getProviderResultRaw()
for this use case?
There is the raw result already in.
$result = $provider->parse('...valid UA');
$result->getProviderResultRaw(); // raw result from each provider
You can check the results here (just click on detail of each provider) http://useragent.mkf.solutions/
I will check this.
Could you look on the change in your .php_cs file?
@mimmi20 .php_cs
change is done. What is with your feedback? Is it enough?
I am using the getProviderResultRaw
function now. Thanks.
I would use your library in one of my projects, but I dont want to use your model. For this I like to make the
getResult
functions public.I also fixed some small coding style issues and removed an useless line from the
.php_cs
file (this is overwritten byconcat_with_spaces
in line 45/46).