Imbo\Storage\StorageInterface::store PHP Method

store() public method

This method will receive the binary data of the image and store it somewhere suited for the actual storage adaper. If an error occurs the adapter should throw an Imbo\Exception\StorageException exception. If the image already exists, simply overwrite it.
public store ( string $user, string $imageIdentifier, string $imageData ) : boolean
$user string The user which the image belongs to
$imageIdentifier string The image identifier
$imageData string The image data to store
return boolean Returns true on success or false on failure
    function store($user, $imageIdentifier, $imageData);