From e050ed5353987df0f892ed05b8aabd988616a679 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 12 Sep 2013 06:44:17 +0200 Subject: [PATCH 1/4] typos in behavior driven development --- _posts/09-03-01-Behavior-Driven-Development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/09-03-01-Behavior-Driven-Development.md b/_posts/09-03-01-Behavior-Driven-Development.md index 9fa148c..d0cde20 100644 --- a/_posts/09-03-01-Behavior-Driven-Development.md +++ b/_posts/09-03-01-Behavior-Driven-Development.md @@ -4,9 +4,9 @@ isChild: true ## Behavior Driven Development {#behavior_driven_development_title} -There are two different types of Behavior-Driven Development (BDD): SpecBDD and StoryBDD. SpecBDD focuses on technical behavior or code, while StoryBDD focuses on business or feature behaviors or interactions. PHP has frameworks for both types of BDD. +There are two different types of Behavior-Driven Development (BDD): SpecBDD and StoryBDD. SpecBDD focuses on technical behavior of code, while StoryBDD focuses on business or feature behaviors or interactions. PHP has frameworks for both types of BDD. -With StoryBDD, you write human-readable stories that describe the behavior of your application. These stories +With StoryBDD, you write human-readable stories that describe the behavior of your application. These stories can then be run as actual tests against your application. The framework used in PHP applications for StoryBDD is Behat, which is inspired by Ruby's [Cucumber](http://cukes.info/) project and implements the Gherkin DSL for describing feature behavior. @@ -15,7 +15,7 @@ With SpecBDD, you write specifications that describe how your actual code should a function or method, you are describing how that function or method should behave. PHP offers the PHPSpec framework for this purpose. This framework is inspired by the [RSpec project](http://rspec.info/) for Ruby. -### BDD Links +### BDD Links * [Behat](http://behat.org/), the StoryBDD framework for PHP, inspired by Ruby's [Cucumber](http://cukes.info/) project; * [PHPSpec](http://www.phpspec.net/), the SpecBDD framework for PHP, inspired by Ruby's [RSpec](http://rspec.info/) project; From 94701e6ddb9a667200d194b28744d72e7ee59d0c Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 12 Sep 2013 11:15:12 +0200 Subject: [PATCH 2/4] irc channel added to url of webchat.freenode.net --- _posts/13-01-01-Community.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/13-01-01-Community.md b/_posts/13-01-01-Community.md index 4af1185..c0f985e 100644 --- a/_posts/13-01-01-Community.md +++ b/_posts/13-01-01-Community.md @@ -23,5 +23,5 @@ The PHP community also hosts larger regional and national conferences in many co [php-conf]: http://php.net/conferences/index.php [phpc-twitter]: https://twitter.com/phpc [php-programmers-gplus]: https://plus.google.com/u/0/communities/104245651975268426012 -[php-irc]: http://webchat.freenode.net/ +[php-irc]: http://webchat.freenode.net/?channels=phpc [php-so]: http://stackoverflow.com/questions/tagged/php From 1a935e0872d8ff1fc9b419f2a87aca5eaab21a35 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 12 Sep 2013 11:16:51 +0200 Subject: [PATCH 3/4] psr-3 link mark removed from coding style post since it is not used --- _posts/02-01-01-Code-Style-Guide.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_posts/02-01-01-Code-Style-Guide.md b/_posts/02-01-01-Code-Style-Guide.md index 3cd3fbb..e9d4657 100644 --- a/_posts/02-01-01-Code-Style-Guide.md +++ b/_posts/02-01-01-Code-Style-Guide.md @@ -33,7 +33,6 @@ by all current and future parties who may be working on the codebase. [psr0]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md [psr1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md [psr2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md -[psr3]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md [pear-cs]: http://pear.php.net/manual/en/standards.php [zend-cs]: http://framework.zend.com/wiki/display/ZFDEV2/Coding+Standards [phpcs]: http://pear.php.net/package/PHP_CodeSniffer/ From cf4f77ecaeb5b530c6c4a7e7d8f0878046e91312 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 12 Sep 2013 11:34:28 +0200 Subject: [PATCH 4/4] XDebug title added --- _posts/03-06-01-XDebug.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/03-06-01-XDebug.md b/_posts/03-06-01-XDebug.md index be511f3..402eb1e 100644 --- a/_posts/03-06-01-XDebug.md +++ b/_posts/03-06-01-XDebug.md @@ -1,4 +1,5 @@ --- +title: XDebug isChild: true ---