for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Balloon;
use Balloon\Manager\FileManager;
use Balloon\Proxy\FileReaderProxy;
use Balloon\Proxy\IProxy;
/**
* Class Balloon
* @package Balloon
* @author Raphaël Lefebvre <[email protected]>
* @method FileReaderProxy getFileReader()
*/
class Balloon extends FileManager implements IProxy
{
* @param FileReaderProxy $fileReaderProxy
* @param string $primaryKey
public function __construct(FileReaderProxy $fileReaderProxy, $primaryKey = '')
parent::__construct($fileReaderProxy, $primaryKey);
}
* writes the modification into the file.
*
* @return int
public function flush()
return $this->getFileReader()->flush();
* rollbacks the modifications not pushed.
public function clear()
$this->getFileReader()->clear();
* invalidates the cache of the file.
integer|null
This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.
@return
public function invalidate()
return $this->getFileReader()->invalidate();
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.