mirror of
https://github.com/flarum/core.git
synced 2025-07-24 18:21:33 +02:00
25 lines
302 B
Plaintext
25 lines
302 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Support;
|
|
|
|
/**
|
|
* @template TClass
|
|
* @property TClass $target
|
|
*/
|
|
class HigherOrderTapProxy
|
|
{
|
|
/**
|
|
* @param TClass $target
|
|
*/
|
|
public function __construct($target)
|
|
{
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @template T
|
|
* @template TValue
|
|
*/
|
|
class HigherOrderCollectionProxy
|
|
{}
|