for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: franziskakoehn
* Date: 15.09.17
* Time: 14:33
*/
namespace yii2mod\cart\models;
trait CartQuantityItem
{
public $quantity = 0;
public function setQuantity($qty){
$this->quantity = $qty;
}