forked from KnpLabs/KnpBundles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TrendingBundleTwitterer
now depends on HWIOAuthBundle
resource ow…
…ner, not on additional `InoriTwitterApp` and related. Funtionality of `BundleActivity` was merged into `BundleUtilsExtension`
- Loading branch information
Showing
13 changed files
with
213 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
* 2012-08-20 | ||
* BC: Bundle entity property symfonyVersion string turned into symfonyVersions array | ||
* `Travis` now depends on `Buzz` | ||
* `Goutte` was removed, and finders were refactored to use `Buzz` | ||
* `TrendingBundleTwitterer` now depends on `HWIOAuthBundle` resource owner, | ||
not on additional `InoriTwitterApp` and related | ||
* Funtionality of `BundleActivity` was merged into `BundleUtilsExtension` | ||
* Bundle entity property `$symfonyVersion` string turned into `$symfonyVersions` array | ||
|
||
* 2012-08-15 | ||
* BundleActivityTwigExtension renamed to BundleUtilsExtension | ||
* `BundleActivityTwigExtension` renamed to `BundleUtilsExtension` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 0 additions & 43 deletions
43
src/Knp/Bundle/KnpBundlesBundle/Activity/BundleActivity.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/Knp/Bundle/KnpBundlesBundle/Tests/Finder/FinderTestCase.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace Knp\Bundle\KnpBundlesBundle\Tests\Finder; | ||
|
||
abstract class FinderTestCase | ||
{ | ||
protected function getBrowserMock($node, $url) | ||
{ | ||
$revert = libxml_use_internal_errors(true); | ||
|
||
$dom = new \DOMDocument('1.0', 'UTF-8'); | ||
$dom->loadHTML($node); | ||
|
||
libxml_use_internal_errors($revert); | ||
|
||
$response = $this->getMock('Buzz\Message\Response'); | ||
$response->expects($this->any()) | ||
->method('toDomDocument') | ||
->will($this->returnValue($dom)); | ||
|
||
$browser = $this->getMock('Buzz\Browser'); | ||
$browser->expects($this->any()) | ||
->method('get') | ||
->with($url) | ||
->will($this->returnValue($response)); | ||
|
||
return $browser; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.