Skip to content

Commit

Permalink
Let build status represent master branch only
Browse files Browse the repository at this point in the history
Remove stowaway file
  • Loading branch information
= committed Oct 12, 2013
1 parent bc5f5a8 commit 2952d38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .vagrant.v1.1380248914

This file was deleted.

4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Slim Framework

[![Build Status](https://secure.travis-ci.org/codeguy/Slim.png)](http://travis-ci.org/codeguy/Slim)
[![Build Status](https://secure.travis-ci.org/codeguy/Slim.png?branch=master)](http://travis-ci.org/codeguy/Slim)

Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
Slim is easy to use for both beginners and professionals. Slim favors cleanliness over terseness and common cases
Expand Down Expand Up @@ -163,7 +163,7 @@ Follow [@slimphp](http://www.twitter.com/slimphp) on Twitter to receive news and

## Author

The Slim Framework is created and maintained by [Josh Lockhart](https://www.joshlockhart.com). Josh is a senior
The Slim Framework is created and maintained by [Josh Lockhart](http://www.joshlockhart.com). Josh is a senior
web developer at [New Media Campaigns](http://www.newmediacampaigns.com/). Josh also created and maintains
[PHP: The Right Way](http://www.phptherightway.com/), a popular movement in the PHP community to introduce new
PHP programmers to best practices and good information.
Expand Down

2 comments on commit 2952d38

@EliuFlorez
Copy link

Choose a reason for hiding this comment

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

Change is_null() calls to strict checks if(is_null($var)) change if($var === null)

@EliuFlorez
Copy link

Choose a reason for hiding this comment

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

Change is_null() calls to strict checks if(!is_null($var)) change if($var !== null)

Please sign in to comment.