Documentation

Job extends BaseMapper
in package

Mappers for jobs.

Tags
template-extends

BaseMapper<JobModel>

Table of Contents

Properties

$em  : EntityManager

Methods

__construct()  : mixed
count()  : int
detach()  : void
Detaches an entity from the entity manager causing any changed to be made to the object to be unsaved
find()  : T|null
findAll()  : array<string|int, T>
findAllJobsApprovedByMember()  : array<string|int, Job>
Get all jobs that were approved or rejected by a specific member.
findBy()  : array<string|int, T>
findByPackageAndCompany()  : Job|null
findJob()  : array<string|int, Job>
Find all jobs identified by $jobSlugName that are owned by a company identified with $companySlugName.
findOneBy()  : T|null
findProposal()  : JobUpdate|null
findProposals()  : array<string|int, Job>
findRecentByApprovedStatus()  : array<string|int, Job>
Get the `$count` most recent jobs for a company with a specific status.
flush()  : void
getConnection()  : Connection
Get the entity manager connection.
getEntityManager()  : EntityManager
Get the entity manager.
isSlugNameUnique()  : bool
Checks if $slugName is only used by object identified with $cid.
persist()  : void
persistMultiple()  : void
Persist multiple studies.
remove()  : void
removeById()  : void
Remove an entity by its ID using find
removeMultiple()  : void
Removes multiple studies.
transactional()  : mixed
Transactional Doctrine wrapper.
getRepository()  : EntityRepository
Get the repository for this mapper.
getRepositoryName()  : string

Properties

Methods

__construct()

public __construct(EntityManager $em) : mixed
Parameters
$em : EntityManager

count()

public count(mixed $criteria) : int
Parameters
$criteria : mixed

The criteria the objects to be counted should satisfy

Return values
int

The number of entities satisfying the criteria

detach()

Detaches an entity from the entity manager causing any changed to be made to the object to be unsaved

public detach(object $entity) : void
Parameters
$entity : object
Tags
psalm-param

T $entity

find()

public find(mixed $id) : T|null
Parameters
$id : mixed

The ID of the entity to be retrieved using the primary key

Return values
T|null

The entity corresponding to the provided ID or null of the entity cannot be found

findAll()

public findAll() : array<string|int, T>
Return values
array<string|int, T>

All entities in the repository

findAllJobsApprovedByMember()

Get all jobs that were approved or rejected by a specific member.

public findAllJobsApprovedByMember(Member $member) : array<string|int, Job>
Parameters
$member : Member
Return values
array<string|int, Job>

findBy()

public findBy(mixed $criteria) : array<string|int, T>
Parameters
$criteria : mixed

The criteria that describe the entity to be retrieved

Return values
array<string|int, T>

The entities corresponding to the provided criteria

findByPackageAndCompany()

public findByPackageAndCompany(string $companySlugName, int $packageId, int $jobId) : Job|null
Parameters
$companySlugName : string
$packageId : int
$jobId : int
Return values
Job|null

findJob()

Find all jobs identified by $jobSlugName that are owned by a company identified with $companySlugName.

public findJob([int|null $jobCategoryId = null ][, string|null $jobCategorySlug = null ][, int|null $jobLabelId = null ][, string|null $jobSlugName = null ][, string|null $companySlugName = null ]) : array<string|int, Job>
Parameters
$jobCategoryId : int|null = null
$jobCategorySlug : string|null = null
$jobLabelId : int|null = null
$jobSlugName : string|null = null
$companySlugName : string|null = null
Return values
array<string|int, Job>

findOneBy()

public findOneBy(array<string|int, mixed> $criteria) : T|null
Parameters
$criteria : array<string|int, mixed>

The criteria that describe the entity to be retrieved

Tags
phpcsSuppress

SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingTraversableTypeHintSpecification

Return values
T|null

The entity corresponding to the provided criteria or null of the entity cannot be found

findProposal()

public findProposal(int $proposalId) : JobUpdate|null
Parameters
$proposalId : int
Return values
JobUpdate|null

findProposals()

public findProposals() : array<string|int, Job>
Return values
array<string|int, Job>

findRecentByApprovedStatus()

Get the `$count` most recent jobs for a company with a specific status.

public findRecentByApprovedStatus(ApprovableStatus $status, string $companySlugName[, int $count = 5 ]) : array<string|int, Job>
Parameters
$status : ApprovableStatus
$companySlugName : string
$count : int = 5
Return values
array<string|int, Job>

flush()

public flush() : void
Tags
throws
ORMException
throws
OptimisticLockException

getConnection()

Get the entity manager connection.

public getConnection() : Connection
Return values
Connection

getEntityManager()

Get the entity manager.

public getEntityManager() : EntityManager
Return values
EntityManager

isSlugNameUnique()

Checks if $slugName is only used by object identified with $cid.

public isSlugNameUnique(string $companySlugName, string $jobSlugName, int $jobCategoryId) : bool
Parameters
$companySlugName : string
$jobSlugName : string
$jobCategoryId : int
Return values
bool

persist()

public persist(object $entity) : void
Parameters
$entity : object
Tags
psalm-param

T|LocalisedTextModel $entity

throws
ORMException

persistMultiple()

Persist multiple studies.

public persistMultiple(array<string|int, mixed> $entities) : void
Parameters
$entities : array<string|int, mixed>
Tags
psalm-param

T[] $entities

throws
ORMException

remove()

public remove(object $entity) : void
Parameters
$entity : object
Tags
psalm-param

T|LocalisedTextModel $entity

throws
ORMException

removeById()

Remove an entity by its ID using find

public removeById(mixed $id) : void
Parameters
$id : mixed
Tags
throws
EntityNotFoundException
throws
OptimisticLockException
throws
ORMException

removeMultiple()

Removes multiple studies.

public removeMultiple(array<string|int, mixed> $entities) : void
Parameters
$entities : array<string|int, mixed>
Tags
psalm-param

T[] $entities

throws
ORMException

transactional()

Transactional Doctrine wrapper.

public transactional(Closure $func) : mixed

Instead of the EntityManager, this inserts this Mapper into the function.

Parameters
$func : Closure

getRepository()

Get the repository for this mapper.

protected getRepository() : EntityRepository
Tags
psalm-return

EntityRepository<T>

Return values
EntityRepository

getRepositoryName()

protected getRepositoryName() : string
Return values
string

the name of the entity repository e.g. "User/Model/User"


        
On this page

Search results