for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RobinDirksen1\LaravelRequestLogger;
class RequestLogger
{
/**
* Multiplies the two given numbers
* @param int $a
* @param int $b
* @return int
*/
public function multiply($a, $b)
return $a * $b;
}