ruạṛ
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\DataMapper\Analytics; use Turbo124\Beacon\ExampleMetric\GenericMixedMetric; class BankAccountsCreated extends GenericMixedMetric { /** * The type of Sample. * * Monotonically incrementing counter * * - counter * * @var string */ public $type = 'mixed_metric'; /** * The name of the counter. * @var string */ public $name = 'bank_accounts.created'; /** * The datetime of the counter measurement. * * date("Y-m-d H:i:s") * */ public $datetime; public $int_metric1 = 0; public function __construct($int_metric1) { $this->int_metric1 = $int_metric1; } }
cải xoăn