Yuriy Belenko 83bad102ea
[php-symfony] Set required PHP version ^7.1.3 (#6181)
* Set PHP 7.1.3 required version

I've tried to specify ^7.0 version at first, but main package which is
symfony/framework-bundle@v4.4.8 requires PHP ^7.1.3.

* Bump Symfony FrameworkBundle to ^4.4.8

Current Symfony Framework stable version is v5.0.8, but I guess it
requires significant codebase upgrade, so I've sticked with 4.4.8 which
shouldn't cause any breaking changes. Old requirement was ^3.3|^4.1
which compatible with 4.4.8.

* Bump PHPUnit version to ^7.0

PHPUnit 8.x version required PHP ^7.2, so I'm setting 7.x version to
support PHP 7.1.
There is new way to specify Kernel class, related PR:
https://github.com/symfony/symfony/pull/22668

* Bump PHP CS Fixer version to ^2.16.3

Configuration and all renamed rules fixed.
Config file renamed to .php_cs.dist as recommended in migration guide.
Migration guide from 1.x to 2.x:
https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/UPGRADE.md#config-file

* Remove PHP_CodeSniffer package

Second linter doesn't make sense. I think Symfony user would prefer
PHP CS Fixer over PHP_CodeSniffer because first one maintained by Symfony
members.

* Remove satooshi/php-coveralls package from Composer

This package is abandoned and Coveralls recommends to install it directly
in Travis-CI task script.

* Update Travic-CI config

I've changed test versions to PHP 7.1.3 and 7.2. PHPUnit generates
coverage report in report/logs/clover.xml file. Then PHP CS Fixer runs
with --dry-run option to not override anything just to show coding style
errors.

* Add basic Coveralls config

This is basic recommended config for a PHP based project.

* Add symfony/yaml package

This package was part of satooshi/php-coveralls, now it should be
defined as dev dependency.

* Do not commit composer.lock

I think committed composer.lock can cause CI errors while tests on fresh
installs are better.

* Remove confusing Ruby comment
2020-05-29 18:35:11 +08:00

257 lines
4.7 KiB
PHP

<?php
/**
* Order
*
* PHP version 7.1.3
*
* @category Class
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
/**
* OpenAPI Petstore
*
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://github.com/openapitools/openapi-generator.git
*
*/
/**
* NOTE: This class is auto generated by the openapi generator program.
* https://github.com/openapitools/openapi-generator
* Do not edit the class manually.
*/
namespace OpenAPI\Server\Model;
use Symfony\Component\Validator\Constraints as Assert;
use JMS\Serializer\Annotation\Type;
use JMS\Serializer\Annotation\SerializedName;
/**
* Class representing the Order model.
*
* An order for a pets from the pet store
*
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
*/
class Order
{
/**
* @var int|null
* @SerializedName("id")
* @Assert\Type("int")
* @Type("int")
*/
protected $id;
/**
* @var int|null
* @SerializedName("petId")
* @Assert\Type("int")
* @Type("int")
*/
protected $petId;
/**
* @var int|null
* @SerializedName("quantity")
* @Assert\Type("int")
* @Type("int")
*/
protected $quantity;
/**
* @var \DateTime|null
* @SerializedName("shipDate")
* @Assert\DateTime()
* @Type("DateTime")
*/
protected $shipDate;
/**
* Order Status
*
* @var string|null
* @SerializedName("status")
* @Assert\Choice({ "placed", "approved", "delivered" })
* @Assert\Type("string")
* @Type("string")
*/
protected $status;
/**
* @var bool|null
* @SerializedName("complete")
* @Assert\Type("bool")
* @Type("bool")
*/
protected $complete;
/**
* Constructor
* @param mixed[] $data Associated array of property values initializing the model
*/
public function __construct(array $data = null)
{
$this->id = isset($data['id']) ? $data['id'] : null;
$this->petId = isset($data['petId']) ? $data['petId'] : null;
$this->quantity = isset($data['quantity']) ? $data['quantity'] : null;
$this->shipDate = isset($data['shipDate']) ? $data['shipDate'] : null;
$this->status = isset($data['status']) ? $data['status'] : null;
$this->complete = isset($data['complete']) ? $data['complete'] : false;
}
/**
* Gets id.
*
* @return int|null
*/
public function getId()
{
return $this->id;
}
/**
* Sets id.
*
* @param int|null $id
*
* @return $this
*/
public function setId($id = null)
{
$this->id = $id;
return $this;
}
/**
* Gets petId.
*
* @return int|null
*/
public function getPetId()
{
return $this->petId;
}
/**
* Sets petId.
*
* @param int|null $petId
*
* @return $this
*/
public function setPetId($petId = null)
{
$this->petId = $petId;
return $this;
}
/**
* Gets quantity.
*
* @return int|null
*/
public function getQuantity()
{
return $this->quantity;
}
/**
* Sets quantity.
*
* @param int|null $quantity
*
* @return $this
*/
public function setQuantity($quantity = null)
{
$this->quantity = $quantity;
return $this;
}
/**
* Gets shipDate.
*
* @return \DateTime|null
*/
public function getShipDate(): ?\DateTime
{
return $this->shipDate;
}
/**
* Sets shipDate.
*
* @param \DateTime|null $shipDate
*
* @return $this
*/
public function setShipDate(\DateTime $shipDate = null)
{
$this->shipDate = $shipDate;
return $this;
}
/**
* Gets status.
*
* @return string|null
*/
public function getStatus()
{
return $this->status;
}
/**
* Sets status.
*
* @param string|null $status Order Status
*
* @return $this
*/
public function setStatus($status = null)
{
$this->status = $status;
return $this;
}
/**
* Gets complete.
*
* @return bool|null
*/
public function isComplete()
{
return $this->complete;
}
/**
* Sets complete.
*
* @param bool|null $complete
*
* @return $this
*/
public function setComplete($complete = null)
{
$this->complete = $complete;
return $this;
}
}