8000 Implement service-based Resource (cache) validation by mpdude · Pull Request #15738 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Implement service-based Resource (cache) validation #15738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CS fix / License added
  • Loading branch information
mpdude committed Sep 14, 2015
commit a845b3cef9a1fbc20957e2a6574f8e502d711ac3
12 changes: 11 additions & 1 deletion src/Symfony/Component/Config/Tests/Resource/ResourceStub.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Config\Tests\Resource;
Copy link
Contributor

Choose a reason for hiding this comment

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

License is missing.


use Symfony\Component\Config\Resource\SelfCheckingResourceInterface;
Expand All @@ -13,7 +22,8 @@ public function setFresh($isFresh)
$this->fresh = $isFresh;
}

public function __toString() {
public function __toString()
{
return 'stub';
}

Expand Down
0