| Current Path : /home/ereika83/www/wp-content/plugins/sfwd-lms/vendor-prefixed/razorpay/razorpay/src/ |
| Current File : /home/ereika83/www/wp-content/plugins/sfwd-lms/vendor-prefixed/razorpay/razorpay/src/Collection.php |
<?php
/**
* @license MIT
*
* Modified by learndash on 18-December-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
namespace StellarWP\Learndash\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;
}
}