Files
opensourcepos/app/Models/Tokens/Token_invoice_count.php
objecttothis ba9bcd7786 PHPdocs
- Added missing PHPdocs
- Corrected Syntax
- Added noinspection parameters to PHPdoc for AJAX called functions
- Added missing function return types
- Added missing parameter types
- Added public keyword to functions without visibility modifier
- Corrected incorrectly formatted PHPdocs
- Added public to constants and functions missing a visibility keyword
2024-06-15 17:19:15 +02:00

40 lines
536 B
PHP

<?php
namespace App\Models\Tokens;
use App\Models\Sale;
/**
* Token_invoice_count class
*
* @property sale sale
*
*/
class Token_invoice_count extends Token
{
/**
* @param string $value
*/
public function __construct(string $value = '')
{
parent::__construct($value);
}
/**
* @return string
*/
public function token_id(): string
{
return 'CO';
}
/**
* @return int
*/
public function get_value(): int
{
$sale = model(Sale::class);
return empty($value) ? $sale->get_invoice_count() : $value;
}
}