for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vendor\Package;
class ExampleClass
{
/**
* @param int $x
* @param int $y
*
* @return int
*/
public function add($x, $y)
return $x + $y;
}