for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright (c) Nate Brunette.
* Distributed under the MIT License (http://opensource.org/licenses/MIT)
*/
declare(strict_types=1);
namespace Tebru\Retrofit\Annotation;
/**
* Query parameter appended to the URL
*
* Use this annotation if the query parameter does not have a value
* @author Nate Brunette <[email protected]>
* @Annotation
* @Target({"CLASS", "METHOD"})
class QueryName extends Encodable
{
* Whether or not multiple annotations of this type can
* be added to a method
* @return bool
public function allowMultiple(): bool
return true;
}