Skip to content

Instantly share code, notes, and snippets.

@doried-a-a
Created May 23, 2020 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doried-a-a/4c209ff114b943910f0b3668703c7bf8 to your computer and use it in GitHub Desktop.
Save doried-a-a/4c209ff114b943910f0b3668703c7bf8 to your computer and use it in GitHub Desktop.
<?php
namespace whatever\ImagesBundle\Messages;
class ImageFilterAppliedMessage
{
protected $redisKey;
protected $imagePath;
public function __construct(string $redisKey, string $imagePath){
$this->redisKey = $redisKey;
$this->imagePath = $imagePath;
}
public function getRedisKey(){
return $this->redisKey;
}
public function getImagePath(){
return $this->imagePath;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment