<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.reflection.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'enum.propertyhooktype.php',
    1 => 'PropertyHookType',
    2 => 'The PropertyHookType Enum',
  ),
  'up' => 
  array (
    0 => 'book.reflection.php',
    1 => 'Reflection',
  ),
  'prev' => 
  array (
    0 => 'class.reflectionexception.php',
    1 => 'ReflectionException',
  ),
  'next' => 
  array (
    0 => 'book.var.php',
    1 => 'Variable handling',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/reflection/propertyhooktype.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="enum.propertyhooktype" class="reference">
 <h1 class="title">The PropertyHookType Enum</h1>
 

 <div class="partintro"><p class="verinfo">(PHP 8 &gt;= 8.4)</p>
  <div class="section" id="enum.propertyhooktype.intro">
   <h2 class="title">Introduzione</h2>
   <p class="simpara">
    The <span class="enumname"><strong class="enumname">PropertyHookType</strong></span> enum lists the legal
    types of <a href="language.oop5.property-hooks.php" class="link">property hook</a>.
   </p>
  </div>

  <div class="section" id="enum.propertyhooktype.synopsis">
   <h2 class="title">Enum synopsis</h2>

   <div class="classsynopsis"><div class="classsynopsisinfo">
    <span class="modifier">enum</span> <strong class="classname"><strong class="enumname">PropertyHookType</strong></strong><br/>{</div>

    <div class="fieldsynopsis">
         <span class="modifier">case</span>  <span class="classname">Get</span>
      = &#039;get&#039;
     ; //
      Indicates a <code class="literal">get</code> hook.
     <br><br>
    </div>

    <div class="fieldsynopsis">
         <span class="modifier">case</span>  <span class="classname">Set</span>
      = &#039;set&#039;
     ; //
      Indicates a <code class="literal">set</code> hook.
     <br><br>
    </div>
   }</div>
  </div>
 </div>
</div>
<?php manual_footer($setup); ?>