HEX
Server: Apache
System: Linux clpupre 5.4.0-90-generic #101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021 x86_64
User: undanet (1000)
PHP: 7.4.3
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/undanet/www//PortalEmpleo/src/Entity/WpUsermeta.php
<?php

namespace PortalEmpleo\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * WpUsermeta
 *
 * @ORM\Table(name="wp_usermeta", indexes={@ORM\Index(name="meta_key", columns={"meta_key"}), @ORM\Index(name="meta_value", columns={"meta_value"})})
 * @ORM\Entity
 */
class WpUsermeta
{
    /**
     * @var int
     *
     * @ORM\Column(name="umeta_id", type="bigint", nullable=false, options={"unsigned"=true})
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $umetaId;

    /**
     * @var int
     *
     * @ORM\Column(name="user_id", type="bigint", nullable=false, options={"unsigned"=true})
     */
    private $userId;

    /**
     * @var string
     *
     * @ORM\Column(name="meta_key", type="string", length=255, nullable=false)
     */
    private $metaKey = '';

    /**
     * @var string
     *
     * @ORM\Column(name="meta_value", type="string", length=1000, nullable=false)
     */
    private $metaValue = '';

    public function __construct()
    {
    }

    /**
     * Get the value of umetaId
     *
     * @return  int
     */ 
    public function getUmetaId()
    {
        return $this->umetaId;
    }

    /**
     * Set the value of umetaId
     *
     * @param  int  $umetaId
     *
     * @return  self
     */ 
    public function setUmetaId(int $umetaId)
    {
        $this->umetaId = $umetaId;

        return $this;
    }

    /**
     * Get the value of userId
     *
     * @return  int
     */ 
    public function getUserId()
    {
        return $this->userId;
    }

    /**
     * Set the value of userId
     *
     * @param  int  $userId
     *
     * @return  self
     */ 
    public function setUserId(int $userId)
    {
        $this->userId = $userId;

        return $this;
    }

    /**
     * Get the value of metaKey
     *
     * @return  string
     */ 
    public function getMetaKey()
    {
        return $this->metaKey;
    }

    /**
     * Set the value of metaKey
     *
     * @param  string  $metaKey
     *
     * @return  self
     */ 
    public function setMetaKey(string $metaKey)
    {
        $this->metaKey = $metaKey;

        return $this;
    }

    /**
     * Get the value of metaValue
     *
     * @return  string
     */ 
    public function getMetaValue()
    {
        return $this->metaValue;
    }

    /**
     * Set the value of metaValue
     *
     * @param  string  $metaValue
     *
     * @return  self
     */ 
    public function setMetaValue(string $metaValue)
    {
        $this->metaValue = $metaValue;

        return $this;
    }
}