for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* citeproc-php
*
* @link http://github.com/seboettg/citeproc-php for the source repository
* @copyright Copyright (c) 2016 Sebastian Böttger.
* @license https://opensource.org/licenses/MIT
*/
namespace Seboettg\CiteProc\Constraint;
use stdClass;
/**
* Class Disambiguate
* When set to “true” (the only allowed value), the element content is only rendered if it disambiguates two otherwise
* identical citations. This attempt at disambiguation is only made when all other disambiguation methods have failed
* to uniquely identify the target source.
class Disambiguate implements Constraint
{
* @param stdClass $data
* @param int|null $citationNumber
* @return bool
public function validate(stdClass $data, $citationNumber = null): bool
return false;
}