FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
razorpay
/
razorpay
/
src
Edit File: Collection.php
<?php namespace Razorpay\Api; use Countable; class Collection extends Entity implements Countable { public function count() { $count = 0; if (isset($this->attributes['count'])) { return $this->attributes['count']; } return $count; } }
Save
Back