diff options
author | Carlos C <uldericofilho@gmail.com> | 2016-02-21 21:43:29 -0800 |
---|---|---|
committer | Carlos C <uldericofilho@gmail.com> | 2016-02-21 21:43:29 -0800 |
commit | 51e54733f4e726f9ed9cce6c068f711b8db8b826 (patch) | |
tree | 153f10db9d23b0ffd5b09549675cdaa1293c022e /src/GameBoy/Canvas/DrawContextInterface.php | |
parent | 5eb01ea29b520a3be3227c3138c1a24bebcf56b3 (diff) | |
download | php-terminal-gameboy-emulator-51e54733f4e726f9ed9cce6c068f711b8db8b826.zip php-terminal-gameboy-emulator-51e54733f4e726f9ed9cce6c068f711b8db8b826.tar.gz php-terminal-gameboy-emulator-51e54733f4e726f9ed9cce6c068f711b8db8b826.tar.bz2 |
Applying psr-2 with phpfmt
Diffstat (limited to 'src/GameBoy/Canvas/DrawContextInterface.php')
-rw-r--r-- | src/GameBoy/Canvas/DrawContextInterface.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GameBoy/Canvas/DrawContextInterface.php b/src/GameBoy/Canvas/DrawContextInterface.php index 73f0c43..1666d92 100644 --- a/src/GameBoy/Canvas/DrawContextInterface.php +++ b/src/GameBoy/Canvas/DrawContextInterface.php @@ -7,12 +7,12 @@ namespace GameBoy\Canvas; */ interface DrawContextInterface { - /** + /** * Draw image on canvas * * @param Array $canvasBuffer Each pixel => 4 items on array (RGBA) * @param int $left * @param int $top */ - public function draw($canvasBuffer, $left, $top); -}
\ No newline at end of file + public function draw($canvasBuffer, $left, $top); +} |