Argosth
Argosth
> The date _can_ be null, mostly common in the PS3 era. Are you sure that the date in this case isn't suppose to be null? Have you compared that...
> I don't think this tool has an iterator for exact match. > > You could probably edit the current iterator, but you will loose the current behavior then. >...
One more question @Ragowit, would you know how to determine the size or the games that a player has from $user->trophyTitles() without having to loop through the entire foreach? I...
> The API returns the total number of games. I'm uncertain if this number includes hidden games or not. > > I'm also uncertain from the top of my head...
> ``` > $users = $client->users()->search('tustin25'); > foreach($users as $user) { > echo $user->accountId() .""; > } > ``` Thank you for your quick response, is there a chance to...
Thank you very much Ragowit, you are always here helping noobs like me hehehe One question, when I try to get title->platform(), I get this enum error: Fatal error: Uncaught...
Thank you Ragowit, your Platform method is still giving me the same error, and `$trophyGroup->totalTrophyCount();` is giving me this error: **Fatal error: Uncaught TypeError: Tustin\PlayStation\Model\Trophy\TrophyGroup::bronze(): Return value must be of...
No worries mate, you did well and help me out a lot :)
One question, is it possible to get the Trophy Group Name? I'm trying and always return a null. I only managed to get the Trophy Group ID (default, 002, 003...
> Check https://github.com/Tustin/psn-php/blob/master/src/Model/Trophy/TrophyGroup.php > > You have title(), name() and detail(), it should be one of those. Hello, about TrophyGroup->name() and detail() are apparently not working, I just managed to...