You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 6, 2018. It is now read-only.
One of the most useful features in a programmer's toolbox is autocompletion, which suggests:
144
144
</p>
@@ -162,7 +162,7 @@ <h3>Autocompletion</h3>
162
162
</div>
163
163
164
164
<divclass="right">
165
-
<h3>Code navigation</h3>
165
+
<h3id="code-navigation">Code navigation</h3>
166
166
<p>
167
167
Code navigation allows you to effortlessly travel through your codebase by clicking the names
168
168
of method calls, classes, interfaces, and other structural elements.
@@ -184,7 +184,7 @@ <h3>Code navigation</h3>
184
184
</div>
185
185
186
186
<divclass="left">
187
-
<h3>Annotations</h3>
187
+
<h3id="annotations">Annotations</h3>
188
188
<p>
189
189
Annotations provide you with relevant information about your code, such as that a parent property is
190
190
being overridden or an interface method is being implemented.
@@ -206,7 +206,7 @@ <h3>Annotations</h3>
206
206
</div>
207
207
208
208
<divclass="right">
209
-
<h3>Tooltips</h3>
209
+
<h3id="tooltips">Tooltips</h3>
210
210
<p>
211
211
Tooltips display documentation for structural elements. Think extended docblock descriptions,
212
212
method parameter descriptions, return type descriptions and exceptions thrown.
@@ -224,7 +224,7 @@ <h3>Tooltips</h3>
224
224
</div>
225
225
226
226
<divclass="left">
227
-
<h3>Refactoring</h3>
227
+
<h3id="refactoring">Refactoring</h3>
228
228
<p>
229
229
Refactoring is the component that has the most potential. Features currently include:
230
230
</p>
@@ -248,7 +248,7 @@ <h3>Refactoring</h3>
248
248
</div>
249
249
250
250
<divclass="right">
251
-
<h3>Call Tips</h3>
251
+
<h3id="call-tips">Call Tips</h3>
252
252
<p>
253
253
Call tips are much like tooltips, but differ only in that they display items directly related to
254
254
function or method calls, such as their expected parameters with their types and default values.
@@ -266,7 +266,7 @@ <h3>Call Tips</h3>
266
266
</div>
267
267
268
268
<divclass="left">
269
-
<h3>Linting</h3>
269
+
<h3id="linting">Linting</h3>
270
270
<p>
271
271
The list wouldn't be complete without a way to highlight errors before stumbling upon them whilst
272
272
running the code. Finding nonexistent class names, docblock issues and missing global functions are
@@ -281,7 +281,7 @@ <h3>Linting</h3>
281
281
282
282
<divclass="row"> </div>
283
283
284
-
<h2>Awesome! What do I need?</h2>
284
+
<h2id="what-do-i-need">Awesome! What do I need?</h2>
285
285
<p>
286
286
To run, you will need at least:
287
287
@@ -297,7 +297,7 @@ <h2>Awesome! What do I need?</h2>
297
297
<li><em>Proper docblocks and type hinting</em> - See <ahref="https://github.com/Gert-dev/php-integrator-base/wiki/Proper-Documentation-And-Type-Hinting">our wiki</a> for more information.</li>
298
298
</ul>
299
299
300
-
<h2>Wait, now I'm confused, what is it really?</h2>
300
+
<h2id="what-is-it-really">Wait, now I'm confused, what is it really?</h2>
301
301
<p>
302
302
At the moment, PHP Integrator itself is an Atom package that consists of a CoffeeScript side (that plugs into
303
303
Atom) and a PHP side. The PHP side is directly part of the Atom package to make the process of installing
@@ -311,14 +311,14 @@ <h2>Wait, now I'm confused, what is it really?</h2>
311
311
analysis is done by the PHP side.
312
312
</p>
313
313
314
-
<h2>Is it really exclusive to Atom?</h2>
314
+
<h2id="is-it-really-exclusive-to-atom">Is it really exclusive to Atom?</h2>
315
315
<p>
316
316
The packages and CoffeeScript parts are dependent on Atom, but the PHP side, which does the heavy lifting,
317
317
is not dependent on Atom at all. One can just extract out the PHP code and build a plugin or extension
318
318
for another editor around it (in the future it might even be extracted into a separate repository).
319
319
</p>
320
320
321
-
<h2>Where is the code?</h2>
321
+
<h2id="where-is-the-code">Where is the code?</h2>
322
322
<p><ahref="https://github.com/Gert-dev/php-integrator-base">Right here</a>, on GitHub.</p>
0 commit comments