File: property_linking.xml

package info (click to toggle)
php-doc 20250827~git.abe740d%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 71,968 kB
  • sloc: xml: 985,760; php: 25,504; javascript: 671; sh: 177; makefile: 37
file content (44 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<chapter xml:id="property_linking" xmlns="http://docbook.org/ns/docbook">

 <section>
  <para>1. Existing property</para>
  <para>
   <property>Vendor\Namespace::$definitely_exists</property>
  </para>
  <para>
   <property>Vendor\Namespace::$definitelyExists2</property>
  </para>
 </section>

 <section>
  <para>2. Nonexistent properties</para>
  <para>
   <property>Vendor\Namespace::$this_does_not_exist</property>
  </para>
  <para>
   <property>Vendor\Namespace::$thisDoesNotExist2</property>
  </para>
 </section>

 <section>
  <para>3. Properties with leading and trailing underscores in ID</para>
  <para>
   <property>Extension\Class::$__leading_and_trailing_undescores__</property>
  </para>
  <para>
   <property>Extension\Class::$__leadingAndTrailingUndescores2__</property>
  </para>
 </section>
 
 <section>
  <para>4. Properties (FQN)</para>
  <para>
   <property>\Vendor\Namespace::$definitely_exists</property>
  </para>
  <para>
   <property>\Vendor\Namespace::$definitelyExists2</property>
  </para>
 </section>

</chapter>