8000 Extracts TraceableAdapterEvent class to its own file by ilirhxh · Pull Request #29640 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Extracts TraceableAdapterEvent class to its own file #29640

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 2 commits into from
Closed
Show file tree
Hide file tree
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
Next Next commit
Extracts TraceableAdapterEvent class to it's own file
  • Loading branch information
ilirhxh committed Dec 18, 2018
commit 92635d6ffd0268d803104ea60f4a772c82c3f11a
10 changes: 0 additions & 10 deletions src/Symfony/Component/Cache/Adapter/TraceableAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,13 +269,3 @@ protected function start($name)
return $event;
}
}

class TraceableAdapterEvent
{
public $name;
public $start;
public $end;
public $result;
public $hits = 0;
public $misses = 0;
}
26 changes: 26 additions & 0 deletions src/Symfony/Component/Cache/Adapter/TraceableAdapterEvent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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\Cache\Adapter;

/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
* @author Nicolas Grekas <p@tchwork.com>
*/
class TraceableAdapterEvent
{
public $name;
public $start;
public $end;
public $result;
public $hits = 0;
public $misses = 0;
}
0