diff --git a/LICENSE b/LICENSE index 9fe39aa6..aefd6359 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Phake - Mocking Framework -Copyright (c) 2010-2011, Mike Lively +Copyright (c) 2010-2012, Mike Lively All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/Phake.php b/src/Phake.php index d8c6f4ec..d2f93a93 100644 --- a/src/Phake.php +++ b/src/Phake.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/Call.php b/src/Phake/CallRecorder/Call.php index 8ac56071..e1c33305 100644 --- a/src/Phake/CallRecorder/Call.php +++ b/src/Phake/CallRecorder/Call.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/CallExpectation.php b/src/Phake/CallRecorder/CallExpectation.php index 625654bd..86f39f82 100644 --- a/src/Phake/CallRecorder/CallExpectation.php +++ b/src/Phake/CallRecorder/CallExpectation.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/CallInfo.php b/src/Phake/CallRecorder/CallInfo.php index 57c34445..15946296 100644 --- a/src/Phake/CallRecorder/CallInfo.php +++ b/src/Phake/CallRecorder/CallInfo.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/IVerificationFailureHandler.php b/src/Phake/CallRecorder/IVerificationFailureHandler.php index fee1def4..013e031c 100644 --- a/src/Phake/CallRecorder/IVerificationFailureHandler.php +++ b/src/Phake/CallRecorder/IVerificationFailureHandler.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/IVerifierMode.php b/src/Phake/CallRecorder/IVerifierMode.php index db2d782d..90665a4a 100644 --- a/src/Phake/CallRecorder/IVerifierMode.php +++ b/src/Phake/CallRecorder/IVerifierMode.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/OrderVerifier.php b/src/Phake/CallRecorder/OrderVerifier.php index db38bb61..66a7db0f 100644 --- a/src/Phake/CallRecorder/OrderVerifier.php +++ b/src/Phake/CallRecorder/OrderVerifier.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/Position.php b/src/Phake/CallRecorder/Position.php index f267a51b..9c4105fd 100644 --- a/src/Phake/CallRecorder/Position.php +++ b/src/Phake/CallRecorder/Position.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/Recorder.php b/src/Phake/CallRecorder/Recorder.php index fcf5272c..bb8ff35e 100644 --- a/src/Phake/CallRecorder/Recorder.php +++ b/src/Phake/CallRecorder/Recorder.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/Verifier.php b/src/Phake/CallRecorder/Verifier.php index 5afce8fc..3ece5917 100644 --- a/src/Phake/CallRecorder/Verifier.php +++ b/src/Phake/CallRecorder/Verifier.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/VerifierMode/AtLeast.php b/src/Phake/CallRecorder/VerifierMode/AtLeast.php index b147271f..5434b681 100644 --- a/src/Phake/CallRecorder/VerifierMode/AtLeast.php +++ b/src/Phake/CallRecorder/VerifierMode/AtLeast.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/VerifierMode/AtMost.php b/src/Phake/CallRecorder/VerifierMode/AtMost.php index 2fbbfc49..d6df7cee 100644 --- a/src/Phake/CallRecorder/VerifierMode/AtMost.php +++ b/src/Phake/CallRecorder/VerifierMode/AtMost.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/CallRecorder/VerifierMode/Times.php b/src/Phake/CallRecorder/VerifierMode/Times.php index 67843075..8fd7545b 100644 --- a/src/Phake/CallRecorder/VerifierMode/Times.php +++ b/src/Phake/CallRecorder/VerifierMode/Times.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/ClassGenerator/EvalLoader.php b/src/Phake/ClassGenerator/EvalLoader.php index d7542359..6d35c8bd 100644 --- a/src/Phake/ClassGenerator/EvalLoader.php +++ b/src/Phake/ClassGenerator/EvalLoader.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/ClassGenerator/FileLoader.php b/src/Phake/ClassGenerator/FileLoader.php index ecbee704..157ad555 100644 --- a/src/Phake/ClassGenerator/FileLoader.php +++ b/src/Phake/ClassGenerator/FileLoader.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/ClassGenerator/ILoader.php b/src/Phake/ClassGenerator/ILoader.php index 8283e575..3682c875 100644 --- a/src/Phake/ClassGenerator/ILoader.php +++ b/src/Phake/ClassGenerator/ILoader.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/ClassGenerator/MockClass.php b/src/Phake/ClassGenerator/MockClass.php index d1bf6979..d86c80ef 100644 --- a/src/Phake/ClassGenerator/MockClass.php +++ b/src/Phake/ClassGenerator/MockClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Facade.php b/src/Phake/Facade.php index 5bfcadd4..1337cd23 100644 --- a/src/Phake/Facade.php +++ b/src/Phake/Facade.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/IMock.php b/src/Phake/IMock.php index 17a36007..09c4e82b 100644 --- a/src/Phake/IMock.php +++ b/src/Phake/IMock.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/AbstractMethodMatcher.php b/src/Phake/Matchers/AbstractMethodMatcher.php index eab234b9..776a94f8 100644 --- a/src/Phake/Matchers/AbstractMethodMatcher.php +++ b/src/Phake/Matchers/AbstractMethodMatcher.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/AnyParameters.php b/src/Phake/Matchers/AnyParameters.php index f9df4e06..13acc72f 100644 --- a/src/Phake/Matchers/AnyParameters.php +++ b/src/Phake/Matchers/AnyParameters.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/ArgumentCaptor.php b/src/Phake/Matchers/ArgumentCaptor.php index 478763c5..6d475d92 100644 --- a/src/Phake/Matchers/ArgumentCaptor.php +++ b/src/Phake/Matchers/ArgumentCaptor.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/EqualsMatcher.php b/src/Phake/Matchers/EqualsMatcher.php index cd682de5..2d01b5f8 100644 --- a/src/Phake/Matchers/EqualsMatcher.php +++ b/src/Phake/Matchers/EqualsMatcher.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/Factory.php b/src/Phake/Matchers/Factory.php index 202d487a..a395fddb 100644 --- a/src/Phake/Matchers/Factory.php +++ b/src/Phake/Matchers/Factory.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/HamcrestMatcherAdapter.php b/src/Phake/Matchers/HamcrestMatcherAdapter.php index fb8d5582..7cc61dad 100644 --- a/src/Phake/Matchers/HamcrestMatcherAdapter.php +++ b/src/Phake/Matchers/HamcrestMatcherAdapter.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/IArgumentMatcher.php b/src/Phake/Matchers/IArgumentMatcher.php index e5d53ea4..b7664e9f 100644 --- a/src/Phake/Matchers/IArgumentMatcher.php +++ b/src/Phake/Matchers/IArgumentMatcher.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/MethodMatcher.php b/src/Phake/Matchers/MethodMatcher.php index 9da7fff2..c63b6d1f 100644 --- a/src/Phake/Matchers/MethodMatcher.php +++ b/src/Phake/Matchers/MethodMatcher.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Matchers/PHPUnitConstraintAdapter.php b/src/Phake/Matchers/PHPUnitConstraintAdapter.php index d35f0647..9cdf998b 100644 --- a/src/Phake/Matchers/PHPUnitConstraintAdapter.php +++ b/src/Phake/Matchers/PHPUnitConstraintAdapter.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Proxies/AnswerBinderProxy.php b/src/Phake/Proxies/AnswerBinderProxy.php index e00dd0f1..c9deed3f 100644 --- a/src/Phake/Proxies/AnswerBinderProxy.php +++ b/src/Phake/Proxies/AnswerBinderProxy.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Proxies/CallStubberProxy.php b/src/Phake/Proxies/CallStubberProxy.php index ab56fe6e..0fe39939 100644 --- a/src/Phake/Proxies/CallStubberProxy.php +++ b/src/Phake/Proxies/CallStubberProxy.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Proxies/CallVerifierProxy.php b/src/Phake/Proxies/CallVerifierProxy.php index 0a4cab24..ecdf2c85 100644 --- a/src/Phake/Proxies/CallVerifierProxy.php +++ b/src/Phake/Proxies/CallVerifierProxy.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Proxies/StubberProxy.php b/src/Phake/Proxies/StubberProxy.php index 78b15308..36a0312d 100644 --- a/src/Phake/Proxies/StubberProxy.php +++ b/src/Phake/Proxies/StubberProxy.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Proxies/VerifierProxy.php b/src/Phake/Proxies/VerifierProxy.php index 472e3613..fbe25412 100644 --- a/src/Phake/Proxies/VerifierProxy.php +++ b/src/Phake/Proxies/VerifierProxy.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/AnswerBinder.php b/src/Phake/Stubber/AnswerBinder.php index 68fe560a..27cf2a1a 100644 --- a/src/Phake/Stubber/AnswerBinder.php +++ b/src/Phake/Stubber/AnswerBinder.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/Answers/ExceptionAnswer.php b/src/Phake/Stubber/Answers/ExceptionAnswer.php index 20d6396f..df2310e7 100644 --- a/src/Phake/Stubber/Answers/ExceptionAnswer.php +++ b/src/Phake/Stubber/Answers/ExceptionAnswer.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/Answers/IDelegator.php b/src/Phake/Stubber/Answers/IDelegator.php index 869179ce..bab9289e 100644 --- a/src/Phake/Stubber/Answers/IDelegator.php +++ b/src/Phake/Stubber/Answers/IDelegator.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/Answers/ParentDelegate.php b/src/Phake/Stubber/Answers/ParentDelegate.php index 6b668c09..845c5869 100644 --- a/src/Phake/Stubber/Answers/ParentDelegate.php +++ b/src/Phake/Stubber/Answers/ParentDelegate.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/Answers/StaticAnswer.php b/src/Phake/Stubber/Answers/StaticAnswer.php index 45203dfa..7e614f93 100644 --- a/src/Phake/Stubber/Answers/StaticAnswer.php +++ b/src/Phake/Stubber/Answers/StaticAnswer.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/IAnswer.php b/src/Phake/Stubber/IAnswer.php index 5aa62084..52f31220 100644 --- a/src/Phake/Stubber/IAnswer.php +++ b/src/Phake/Stubber/IAnswer.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/IAnswerBinder.php b/src/Phake/Stubber/IAnswerBinder.php index 53f287c8..d75b16cb 100644 --- a/src/Phake/Stubber/IAnswerBinder.php +++ b/src/Phake/Stubber/IAnswerBinder.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/IAnswerDelegate.php b/src/Phake/Stubber/IAnswerDelegate.php index 895d610b..6a0e2f41 100644 --- a/src/Phake/Stubber/IAnswerDelegate.php +++ b/src/Phake/Stubber/IAnswerDelegate.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/SelfBindingAnswerBinder.php b/src/Phake/Stubber/SelfBindingAnswerBinder.php index bf2d1ad9..d733f041 100644 --- a/src/Phake/Stubber/SelfBindingAnswerBinder.php +++ b/src/Phake/Stubber/SelfBindingAnswerBinder.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/Phake/Stubber/StubMapper.php b/src/Phake/Stubber/StubMapper.php index cf1303af..c994630b 100644 --- a/src/Phake/Stubber/StubMapper.php +++ b/src/Phake/Stubber/StubMapper.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/package.xml b/src/package.xml index 11eb13ee..81a7425e 100644 --- a/src/package.xml +++ b/src/package.xml @@ -13,15 +13,15 @@ m@digitalsandwich.com yes - 2011-12-05 + 2012-01-01 - 1.0.0alpha7 - 1.0.0alpha7 + 1.0.0 + 1.0.0 - alpha - alpha + stable + stable BSD Style https://github.com/mlively/Phake/blob/master/CHANGELOG.markdown diff --git a/tests/Phake/CallRecorder/CallExpectationTest.php b/tests/Phake/CallRecorder/CallExpectationTest.php index 5bfe8e28..713fc1ad 100644 --- a/tests/Phake/CallRecorder/CallExpectationTest.php +++ b/tests/Phake/CallRecorder/CallExpectationTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/CallInfoTest.php b/tests/Phake/CallRecorder/CallInfoTest.php index aec25adf..f1bb9d47 100644 --- a/tests/Phake/CallRecorder/CallInfoTest.php +++ b/tests/Phake/CallRecorder/CallInfoTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/CallTest.php b/tests/Phake/CallRecorder/CallTest.php index 76a54d23..ab9626e3 100644 --- a/tests/Phake/CallRecorder/CallTest.php +++ b/tests/Phake/CallRecorder/CallTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/OrderVerifierTest.php b/tests/Phake/CallRecorder/OrderVerifierTest.php index b7a74398..c041f614 100644 --- a/tests/Phake/CallRecorder/OrderVerifierTest.php +++ b/tests/Phake/CallRecorder/OrderVerifierTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/PositionTest.php b/tests/Phake/CallRecorder/PositionTest.php index fd1d3961..9382f28b 100644 --- a/tests/Phake/CallRecorder/PositionTest.php +++ b/tests/Phake/CallRecorder/PositionTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/RecorderTest.php b/tests/Phake/CallRecorder/RecorderTest.php index 7ec2bdfb..b6012160 100644 --- a/tests/Phake/CallRecorder/RecorderTest.php +++ b/tests/Phake/CallRecorder/RecorderTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/VerifierMode/AtLeastTest.php b/tests/Phake/CallRecorder/VerifierMode/AtLeastTest.php index c21d278f..470018ab 100644 --- a/tests/Phake/CallRecorder/VerifierMode/AtLeastTest.php +++ b/tests/Phake/CallRecorder/VerifierMode/AtLeastTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/VerifierMode/AtMostTest.php b/tests/Phake/CallRecorder/VerifierMode/AtMostTest.php index ac740851..7e30d849 100644 --- a/tests/Phake/CallRecorder/VerifierMode/AtMostTest.php +++ b/tests/Phake/CallRecorder/VerifierMode/AtMostTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/VerifierMode/TimesTest.php b/tests/Phake/CallRecorder/VerifierMode/TimesTest.php index 08363926..9dd4e7d3 100644 --- a/tests/Phake/CallRecorder/VerifierMode/TimesTest.php +++ b/tests/Phake/CallRecorder/VerifierMode/TimesTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/CallRecorder/VerifierTest.php b/tests/Phake/CallRecorder/VerifierTest.php index ba434862..3726497a 100644 --- a/tests/Phake/CallRecorder/VerifierTest.php +++ b/tests/Phake/CallRecorder/VerifierTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/ClassGenerator/MockClassTest.php b/tests/Phake/ClassGenerator/MockClassTest.php index b95c60e5..8063b0a0 100644 --- a/tests/Phake/ClassGenerator/MockClassTest.php +++ b/tests/Phake/ClassGenerator/MockClassTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/FacadeTest.php b/tests/Phake/FacadeTest.php index 6cf1f32c..2bceeeba 100644 --- a/tests/Phake/FacadeTest.php +++ b/tests/Phake/FacadeTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/AbstractMethodMatcherTest.php b/tests/Phake/Matchers/AbstractMethodMatcherTest.php index 3f22b805..ab88c60d 100644 --- a/tests/Phake/Matchers/AbstractMethodMatcherTest.php +++ b/tests/Phake/Matchers/AbstractMethodMatcherTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/AnyParametersTest.php b/tests/Phake/Matchers/AnyParametersTest.php index 0549a365..1eb0d99b 100644 --- a/tests/Phake/Matchers/AnyParametersTest.php +++ b/tests/Phake/Matchers/AnyParametersTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/ArgumentCaptorTest.php b/tests/Phake/Matchers/ArgumentCaptorTest.php index ef39acf2..2707e0e2 100644 --- a/tests/Phake/Matchers/ArgumentCaptorTest.php +++ b/tests/Phake/Matchers/ArgumentCaptorTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/EqualsMatcherTest.php b/tests/Phake/Matchers/EqualsMatcherTest.php index 8cb51058..0463e5ec 100644 --- a/tests/Phake/Matchers/EqualsMatcherTest.php +++ b/tests/Phake/Matchers/EqualsMatcherTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/FactoryTest.php b/tests/Phake/Matchers/FactoryTest.php index c1cb3e06..e596c76a 100644 --- a/tests/Phake/Matchers/FactoryTest.php +++ b/tests/Phake/Matchers/FactoryTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/HamcrestMatcherAdapterTest.php b/tests/Phake/Matchers/HamcrestMatcherAdapterTest.php index 01c8c994..bc21d23c 100644 --- a/tests/Phake/Matchers/HamcrestMatcherAdapterTest.php +++ b/tests/Phake/Matchers/HamcrestMatcherAdapterTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/IMethodMatcher.php b/tests/Phake/Matchers/IMethodMatcher.php index c2d1aa91..e51dd81d 100644 --- a/tests/Phake/Matchers/IMethodMatcher.php +++ b/tests/Phake/Matchers/IMethodMatcher.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/MethodMatcherTest.php b/tests/Phake/Matchers/MethodMatcherTest.php index 99fd0134..eea4abbe 100644 --- a/tests/Phake/Matchers/MethodMatcherTest.php +++ b/tests/Phake/Matchers/MethodMatcherTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Matchers/PHPUnitConstraintAdapterTest.php b/tests/Phake/Matchers/PHPUnitConstraintAdapterTest.php index e008d07a..75c67668 100644 --- a/tests/Phake/Matchers/PHPUnitConstraintAdapterTest.php +++ b/tests/Phake/Matchers/PHPUnitConstraintAdapterTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Proxies/AnswerBinderProxyTest.php b/tests/Phake/Proxies/AnswerBinderProxyTest.php index 53fc737b..a515aa47 100644 --- a/tests/Phake/Proxies/AnswerBinderProxyTest.php +++ b/tests/Phake/Proxies/AnswerBinderProxyTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Proxies/CallStubberProxyTest.php b/tests/Phake/Proxies/CallStubberProxyTest.php index 125a070a..5f6a987d 100644 --- a/tests/Phake/Proxies/CallStubberProxyTest.php +++ b/tests/Phake/Proxies/CallStubberProxyTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Proxies/CallVerifierProxyTest.php b/tests/Phake/Proxies/CallVerifierProxyTest.php index 0a4c839b..2ba801da 100644 --- a/tests/Phake/Proxies/CallVerifierProxyTest.php +++ b/tests/Phake/Proxies/CallVerifierProxyTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Proxies/StubberProxyTest.php b/tests/Phake/Proxies/StubberProxyTest.php index dca504e7..030d7283 100644 --- a/tests/Phake/Proxies/StubberProxyTest.php +++ b/tests/Phake/Proxies/StubberProxyTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Proxies/VerifierProxyTest.php b/tests/Phake/Proxies/VerifierProxyTest.php index 51ab24e5..67d6158d 100644 --- a/tests/Phake/Proxies/VerifierProxyTest.php +++ b/tests/Phake/Proxies/VerifierProxyTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/String/ConverterTest.php b/tests/Phake/String/ConverterTest.php index 28e464b8..3f5be15c 100644 --- a/tests/Phake/String/ConverterTest.php +++ b/tests/Phake/String/ConverterTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/AnswerBinderTest.php b/tests/Phake/Stubber/AnswerBinderTest.php index 92986f35..c4efa16a 100644 --- a/tests/Phake/Stubber/AnswerBinderTest.php +++ b/tests/Phake/Stubber/AnswerBinderTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/Answers/ExceptionAnswerTest.php b/tests/Phake/Stubber/Answers/ExceptionAnswerTest.php index 6754989b..cb955646 100644 --- a/tests/Phake/Stubber/Answers/ExceptionAnswerTest.php +++ b/tests/Phake/Stubber/Answers/ExceptionAnswerTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/Answers/ParentDelegateTest.php b/tests/Phake/Stubber/Answers/ParentDelegateTest.php index 6c539c9a..97dd4459 100644 --- a/tests/Phake/Stubber/Answers/ParentDelegateTest.php +++ b/tests/Phake/Stubber/Answers/ParentDelegateTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/Answers/StaticAnswerTest.php b/tests/Phake/Stubber/Answers/StaticAnswerTest.php index 8a20431b..7d670f7b 100644 --- a/tests/Phake/Stubber/Answers/StaticAnswerTest.php +++ b/tests/Phake/Stubber/Answers/StaticAnswerTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/SelfBindingAnswerBinderTest.php b/tests/Phake/Stubber/SelfBindingAnswerBinderTest.php index dd87a95e..6df48f9a 100644 --- a/tests/Phake/Stubber/SelfBindingAnswerBinderTest.php +++ b/tests/Phake/Stubber/SelfBindingAnswerBinderTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/Phake/Stubber/StubMapperTest.php b/tests/Phake/Stubber/StubMapperTest.php index 7a4009dc..e471c0ac 100644 --- a/tests/Phake/Stubber/StubMapperTest.php +++ b/tests/Phake/Stubber/StubMapperTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest.php b/tests/PhakeTest.php index 922418b3..0f9a19a4 100644 --- a/tests/PhakeTest.php +++ b/tests/PhakeTest.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/AbstractClass.php b/tests/PhakeTest/AbstractClass.php index e09b64e3..d40138ae 100644 --- a/tests/PhakeTest/AbstractClass.php +++ b/tests/PhakeTest/AbstractClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/DestructorClass.php b/tests/PhakeTest/DestructorClass.php index bbcfee02..6b039b31 100644 --- a/tests/PhakeTest/DestructorClass.php +++ b/tests/PhakeTest/DestructorClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/ExtendedMockedConstructedClass.php b/tests/PhakeTest/ExtendedMockedConstructedClass.php index a9ec7f4d..a7c5806e 100644 --- a/tests/PhakeTest/ExtendedMockedConstructedClass.php +++ b/tests/PhakeTest/ExtendedMockedConstructedClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/FinalMethod.php b/tests/PhakeTest/FinalMethod.php index a073e368..58caa50a 100644 --- a/tests/PhakeTest/FinalMethod.php +++ b/tests/PhakeTest/FinalMethod.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/MagicClass.php b/tests/PhakeTest/MagicClass.php index 3776816a..6c3d3ac6 100644 --- a/tests/PhakeTest/MagicClass.php +++ b/tests/PhakeTest/MagicClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/MockedClass.php b/tests/PhakeTest/MockedClass.php index 2884573f..3bbcf4bb 100644 --- a/tests/PhakeTest/MockedClass.php +++ b/tests/PhakeTest/MockedClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/MockedConstructedClass.php b/tests/PhakeTest/MockedConstructedClass.php index bab4bc41..ee1579bc 100644 --- a/tests/PhakeTest/MockedConstructedClass.php +++ b/tests/PhakeTest/MockedConstructedClass.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/PhakeTest/MockedInterface.php b/tests/PhakeTest/MockedInterface.php index edaf5120..d8927091 100644 --- a/tests/PhakeTest/MockedInterface.php +++ b/tests/PhakeTest/MockedInterface.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/bootstrap.php b/tests/bootstrap.php index c5659fbd..0e4c95f9 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -2,7 +2,7 @@ /* * Phake - Mocking Framework * - * Copyright (c) 2010-2011, Mike Lively + * Copyright (c) 2010-2012, Mike Lively * All rights reserved. * * Redistribution and use in source and binary forms, with or without