Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm

matrix:
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
}
],
"require": {
"php": ">=5.6.0",
"nette/application": "~2.2"
},
"require-dev": {
Expand Down
4 changes: 3 additions & 1 deletion src/Joseki/Application/Responses/TextAsFileResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
use Nette\Http\IResponse as HttpIResponse;
use Nette\Object;

class TextAsFileResponse extends Object implements IResponse
class TextAsFileResponse implements IResponse
{
use \Nette\SmartObject;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there are 5 spaces instead of 4

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

corrected :-)


/** @var string */
private $name;

Expand Down