4695f578a6ef34ec2de21d316b0a5b5a0651d413
[yaffs-website] / vendor / psy / psysh / src / Psy / TabCompletion / Matcher / ClassAttributesMatcher.php
1 <?php
2
3 /*
4  * This file is part of Psy Shell.
5  *
6  * (c) 2012-2017 Justin Hileman
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Psy\TabCompletion\Matcher;
13
14 /**
15  * A class attribute tab completion Matcher.
16  *
17  * Given a namespace and class, this matcher provides completion for constants
18  * and static properties.
19  *
20  * @author Marc Garcia <markcial@gmail.com>
21  */
22 class ClassAttributesMatcher extends AbstractMatcher
23 {
24     /**
25      * {@inheritdoc}
26      */
27     public function getMatches(array $tokens, array $info = array())
28     {
29         $input = $this->getInput($tokens);
30
31         $firstToken = array_pop($tokens);
32         if (self::tokenIs($firstToken, self::T_STRING)) {
33             // second token is the nekudotayim operator
34             array_pop($tokens);
35         }
36
37         $class = $this->getNamespaceAndClass($tokens);
38
39         $reflection = new \ReflectionClass($class);
40         $vars = array_merge(
41             array_map(
42                 function ($var) {
43                     return '$' . $var;
44                 },
45                 array_keys($reflection->getStaticProperties())
46             ),
47             array_keys($reflection->getConstants())
48         );
49
50         return array_map(
51             function ($name) use ($class) {
52                 return $class . '::' . $name;
53             },
54             array_filter(
55                 $vars,
56                 function ($var) use ($input) {
57                     return AbstractMatcher::startsWith($input, $var);
58                 }
59             )
60         );
61     }
62
63     /**
64      * {@inheritdoc}
65      */
66     public function hasMatched(array $tokens)
67     {
68         $token = array_pop($tokens);
69         $prevToken = array_pop($tokens);
70
71         switch (true) {
72             case self::tokenIs($prevToken, self::T_DOUBLE_COLON) && self::tokenIs($token, self::T_STRING):
73             case self::tokenIs($token, self::T_DOUBLE_COLON):
74                 return true;
75         }
76
77         return false;
78     }
79 }