Skip to content

Commit d14ddfe

Browse files
committed
Merge branch '1.0'
2 parents 1b26383 + 29a68f6 commit d14ddfe

File tree

5 files changed

+6
-27
lines changed

5 files changed

+6
-27
lines changed

.styleci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ preset: laravel
22

33
disabled:
44
- single_class_element_per_statement
5+
- length_ordered_imports

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

3-
All notable changes to `:package_name` will be documented in this file
3+
All notable changes to `laravel-apicontroller` will be documented in this file
44

5-
## 1.0.3 - 2017-09-27
5+
## 1.0.4 - 2017-09-27
66

77
- add missing basic files to root
88

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Provides basic API functionality for Laravel
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/webfactor/laravel-apicontroller.svg?style=flat-square)](https://packagist.org/packages/webfactor/laravel-apicontroller)
4-
[![Build Status](https://img.shields.io/travis/webfactor/laravel-apicontroller/master.svg?style=flat-square)](https://travis-ci.org/webfactor/laravel-apicontroller)
54
[![StyleCI](https://styleci.io/repos/104893362/shield?branch=master)](https://styleci.io/repos/104893362)
65
[![Total Downloads](https://img.shields.io/packagist/dt/webfactor/laravel-apicontroller.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-apicontroller)
76

@@ -11,14 +10,13 @@
1110
You can install the package via composer:
1211

1312
```bash
14-
// :todo
13+
// composer require webfactor/laravel-apicontroller
1514
```
1615

1716
## Usage
1817

1918
``` php
20-
$package = new Webfactor\Package();
21-
echo $package->helloWorld();
19+
// :todo
2220
```
2321

2422
## Changelog

src/ApiController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ private function prepareRespondData()
175175
'header' => [
176176
'type' => $this->responseType,
177177
'message' => $this->responseMessage,
178-
'code' => $this->responseStatusCode
178+
'code' => $this->responseStatusCode,
179179
],
180180
];
181181

0 commit comments

Comments
 (0)