PK

ADDRLIN : /home/anibklip/aelogifts.com/razorpay/src/
FLL :
Current File : /home/anibklip/aelogifts.com/razorpay/src/Collection.php

<?php

namespace Razorpay\Api;

use Countable;

class Collection extends Entity implements Countable
{
    public function count():int
    {
        $count = 0;

        if (isset($this->attributes['count']))
        {
            return $this->attributes['count'];
        }

        return $count;
    }
}


PK 99