1
0

test adding condorcet vote

This commit is contained in:
2022-09-21 12:39:11 +02:00
parent 1e8adfa5d5
commit 0a30f39eb4
349 changed files with 36658 additions and 0 deletions

View File

@ -0,0 +1,21 @@
## public Timer\Manager::getHistory
### Description
```php
public Timer\Manager->getHistory ( ): array
```
Return benchmarked actions history.
### Return value:
*(```array```)* An explicit array with history.
---------------------------------------
### Related method(s)
* [Election::getTimerManager](../Election%20Class/public%20Election--getTimerManager.md)

View File

@ -0,0 +1,25 @@
## public Timer\Manager::getObjectVersion
### Description
```php
public Timer\Manager->getObjectVersion ( [bool $major = false] ): string
```
Get the Condorcet PHP version who built this Election object. Usefull pour serializing Election.
##### **major:** *```bool```*
true will return : '2.0' and false will return : '2.0.0'.
### Return value:
*(```string```)* Condorcet PHP version.
---------------------------------------
### Related method(s)
* [static Condorcet::getVersion](../Condorcet%20Class/public%20static%20Condorcet--getVersion.md)