comparison vendor/symfony/console/Descriptor/Descriptor.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
71 } 71 }
72 72
73 /** 73 /**
74 * Describes an InputArgument instance. 74 * Describes an InputArgument instance.
75 * 75 *
76 * @param InputArgument $argument
77 * @param array $options
78 *
79 * @return string|mixed 76 * @return string|mixed
80 */ 77 */
81 abstract protected function describeInputArgument(InputArgument $argument, array $options = array()); 78 abstract protected function describeInputArgument(InputArgument $argument, array $options = array());
82 79
83 /** 80 /**
84 * Describes an InputOption instance. 81 * Describes an InputOption instance.
85 *
86 * @param InputOption $option
87 * @param array $options
88 * 82 *
89 * @return string|mixed 83 * @return string|mixed
90 */ 84 */
91 abstract protected function describeInputOption(InputOption $option, array $options = array()); 85 abstract protected function describeInputOption(InputOption $option, array $options = array());
92 86
93 /** 87 /**
94 * Describes an InputDefinition instance. 88 * Describes an InputDefinition instance.
95 * 89 *
96 * @param InputDefinition $definition
97 * @param array $options
98 *
99 * @return string|mixed 90 * @return string|mixed
100 */ 91 */
101 abstract protected function describeInputDefinition(InputDefinition $definition, array $options = array()); 92 abstract protected function describeInputDefinition(InputDefinition $definition, array $options = array());
102 93
103 /** 94 /**
104 * Describes a Command instance. 95 * Describes a Command instance.
105 *
106 * @param Command $command
107 * @param array $options
108 * 96 *
109 * @return string|mixed 97 * @return string|mixed
110 */ 98 */
111 abstract protected function describeCommand(Command $command, array $options = array()); 99 abstract protected function describeCommand(Command $command, array $options = array());
112 100
113 /** 101 /**
114 * Describes an Application instance. 102 * Describes an Application instance.
115 * 103 *
116 * @param Application $application
117 * @param array $options
118 *
119 * @return string|mixed 104 * @return string|mixed
120 */ 105 */
121 abstract protected function describeApplication(Application $application, array $options = array()); 106 abstract protected function describeApplication(Application $application, array $options = array());
122 } 107 }